From 004f1336e6e59d476c1043f1dc94c92d028ac5d0 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Mon, 30 Mar 2026 20:49:12 +0300 Subject: [PATCH] CI: Update node to 24, run ci without scripts (#5376) --- .github/workflows/pr-checks.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 6ac3d98b9..9571f62da 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -34,10 +34,10 @@ jobs: # https://github.com/marketplace/actions/setup-node-js-environment uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 with: - node-version: 20 + node-version: 24 - name: Run npm install - run: npm ci + run: npm ci --ignore-scripts - name: Run ESLint # Action ESLint @@ -72,13 +72,13 @@ jobs: # https://github.com/marketplace/actions/setup-node-js-environment uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 with: - node-version: 20 + node-version: 24 - name: Install root dependencies - run: npm ci + run: npm ci --ignore-scripts - name: Install test dependencies - run: npm ci --prefix tests + run: npm ci --ignore-scripts --prefix tests - name: Run unit tests run: npm run test:unit --prefix tests