From 56c0e22e8de7ea840d04d185a46642be2249174f Mon Sep 17 00:00:00 2001 From: Connor Burton Date: Sun, 17 Sep 2023 14:17:34 +0100 Subject: [PATCH] ci: use npm ci to install packages --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 030d0b6..741a6b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install Dependencies - run: npm + run: npm ci - name: Check Linting run: npm run lint:check - name: Check Coding Style