From 08946d1cababe0a84545225e2054b3668f037128 Mon Sep 17 00:00:00 2001 From: rugk Date: Sat, 9 Jul 2022 16:48:21 +0200 Subject: [PATCH] Use npm ci instead of npm install for tests in CI So it uses the package-json.lock file actually. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 55a51aa..7bc1e12 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -112,7 +112,7 @@ jobs: run: npm install -g mocha - name: Setup Node modules - run: npm install + run: npm ci working-directory: js - name: Run unit tests