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.
This commit is contained in:
Rob Wu
2023-11-01 23:40:01 +01:00
committed by GitHub
parent fc984fa2e4
commit 31008d83eb

View File

@@ -20,7 +20,7 @@ jobs:
node-version: "latest"
cache: "npm"
- run: npm ci
- run: npm install
- uses: reviewdog/action-eslint@v1
with: