From 3be27b9af469403d7bb20cc235c5b8beeb9a2513 Mon Sep 17 00:00:00 2001 From: Matt Hinchliffe Date: Mon, 23 Oct 2023 21:17:39 +0100 Subject: [PATCH] Install dependencies on GH actions using npm ci command --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fe1bb3f..c0f7ae2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,7 +27,7 @@ jobs: cache: 'npm' - name: Install - run: npm install + run: npm ci - name: Lint, format and type check run: npm run verify