CI: Update node to 24, run ci without scripts (#5376)

004f1336e6e59d476c1043f1dc94c92d028ac5d0

Cohee <18619528+Cohee1207@users.noreply.github.com>

Signed
1 files changed, +5 -5Showing whitespace changes
.github/workflows/pr-checks.yml+5 -5
@@ -34,10 +34,10 @@ jobs:
3434 # https://github.com/marketplace/actions/setup-node-js-environment
3535 uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
3636 with:
3737 node-version: 2024
3838
3939 - name: Run npm install
4040 run: npm ci --ignore-scripts
4141
4242 - name: Run ESLint
4343 # Action ESLint
@@ -72,13 +72,13 @@ jobs:
7272 # https://github.com/marketplace/actions/setup-node-js-environment
7373 uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
7474 with:
7575 node-version: 2024
7676
7777 - name: Install root dependencies
7878 run: npm ci --ignore-scripts
7979
8080 - name: Install test dependencies
8181 run: npm ci --ignore-scripts --prefix tests
8282
8383 - name: Run unit tests
8484 run: npm run test:unit --prefix tests