Skip to content

Commit

Permalink
Comment out package cache as it requires lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakarFin committed Mar 6, 2023
1 parent 2e96345 commit f72c0c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
# We need package-lock.json to use cache this way
# cache: 'npm'
- name: Install dependencies
# With package-lock.json we should use "npm ci"
run: npm install
- run: npm test

0 comments on commit f72c0c2

Please sign in to comment.