From 4605ae3677d7420d0ed7e0e99de1f245141eb156 Mon Sep 17 00:00:00 2001 From: Igor Sirotin Date: Thu, 12 Mar 2026 16:46:13 +0000 Subject: [PATCH] ci: update ci job --- .github/workflows/ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5da168..eb2db7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,16 +9,17 @@ on: pull_request: env: - NODE_JS: "22" + NODE_JS: "24" jobs: check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: ${{ env.NODE_JS }} - - uses: bahmutov/npm-install@v1 - - run: npm run check:spell - - run: npm run build + cache: yarn + - run: yarn install --frozen-lockfile + - run: yarn check:spell + - run: yarn build