From 31008d83ebc780a6073eb95cb5b79e90a824fd76 Mon Sep 17 00:00:00 2001 From: Rob Wu Date: Wed, 1 Nov 2023 23:40:01 +0100 Subject: [PATCH] chore: use npm install instead of npm ci in gh workflow (#549) The project does not have a package-lock.json file, so `npm ci` does not work. Switch to `npm install` instead. --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c2819fe4..a96ef839 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,7 +20,7 @@ jobs: node-version: "latest" cache: "npm" - - run: npm ci + - run: npm install - uses: reviewdog/action-eslint@v1 with: