From 31ee7f54d3f4ce47a5dcd216249b21ea1c4f8cbb Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Thu, 21 Aug 2025 13:49:32 +0100 Subject: [PATCH] Install dependencies in PR checks --- .github/workflows/pr-checks.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 7e367cdc1..e59e05343 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -21,9 +21,12 @@ jobs: - name: Checkout uses: actions/checkout@v5 + - name: Install dependencies + run: npm install + - name: Lint id: lint - run: npm run-script lint-ci + run: npm run lint-ci - name: Upload sarif uses: github/codeql-action/upload-sarif@v3 @@ -74,6 +77,7 @@ jobs: # Run any commands referenced in package.json using Bash, otherwise # we won't be able to find them on Windows. npm config set script-shell bash + npm install npm test check-node-version: