Skip to content

Commit

Permalink
Fix failing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobertlloyd committed Dec 19, 2023
1 parent 0484a93 commit a77e0a5
Show file tree
Hide file tree
Showing 3 changed files with 1,304 additions and 2,597 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
# Can’t use `npm ci` due to https://github.com/npm/cli/issues/4828
run: |
npm i --package-lock=false
- name: Lint
run: npm run lint
- name: Test
Expand Down
Loading

0 comments on commit a77e0a5

Please sign in to comment.