From 79cf312d6c976a699abf0b1c860e15024a44164b Mon Sep 17 00:00:00 2001 From: codecalm Date: Fri, 26 Dec 2025 17:02:22 +0100 Subject: [PATCH] Update GitHub Actions workflow to use Node.js 22 and adjust build command to utilize pnpm for improved consistency and performance. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f293fde3..d67a7dca7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,10 +11,10 @@ jobs: steps: - uses: actions/checkout@v5 - - name: Use Node.js 20 + - name: Use Node.js 22 uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - uses: pnpm/action-setup@v4 name: Install pnpm @@ -40,5 +40,5 @@ jobs: - name: Build env: ICONS_LIMIT: 100 - run: turbo build + run: pnpm exec turbo build