Skip to content

Commit

Permalink
chore: use npm install instead of npm ci in gh workflow (#549)
Browse files Browse the repository at this point in the history
The project does not have a package-lock.json file, so `npm ci` does not
work. Switch to `npm install` instead.
  • Loading branch information
Rob--W committed Nov 1, 2023
1 parent fc984fa commit 31008d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
node-version: "latest"
cache: "npm"

- run: npm ci
- run: npm install

- uses: reviewdog/action-eslint@v1
with:
Expand Down

0 comments on commit 31008d8

Please sign in to comment.