From f72c0c2ebf47eff7c94e594f3f5ff9f3d5dec607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sami=20M=C3=A4kinen?= Date: Mon, 6 Mar 2023 18:08:36 +0200 Subject: [PATCH] Comment out package cache as it requires lockfile --- .github/workflows/run_tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 56217ada78..93e03edb0a 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -27,7 +27,9 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - cache: 'npm' +# We need package-lock.json to use cache this way +# cache: 'npm' - name: Install dependencies +# With package-lock.json we should use "npm ci" run: npm install - run: npm test