Skip to content

Commit

Permalink
fix: dependency installs in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Bolls authored and Linus Bolls committed May 31, 2024
1 parent beca93e commit fa3acdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install
run: npm install --force

- name: Run tests
run: npm run lint-all
2 changes: 1 addition & 1 deletion .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm install
run: npm install --force

- name: Run linting
run: npm run test

0 comments on commit fa3acdd

Please sign in to comment.