From f8c0d73f71099e756da9ac567a1b9ab0d847f577 Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Thu, 21 Aug 2025 16:19:00 +0100 Subject: [PATCH] Install dependencies in code scanning config test --- .github/workflows/codescanning-config-cli.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/codescanning-config-cli.yml b/.github/workflows/codescanning-config-cli.yml index 15798b46c..1540eb3a1 100644 --- a/.github/workflows/codescanning-config-cli.yml +++ b/.github/workflows/codescanning-config-cli.yml @@ -55,6 +55,16 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v5 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + + - name: Install dependencies + run: npm install + - name: Prepare test id: prepare-test uses: ./.github/actions/prepare-test