Skip to content

Commit

Permalink
ci: Disable setup cache
Browse files Browse the repository at this point in the history
Based on https://stackoverflow.com/a/73900708 it seems we do not
have to add `package-json.lock`.

Signed-off-by: Anastassios Nanos <[email protected]>
  • Loading branch information
ananos authored and razvand committed Nov 11, 2023
1 parent ce5e5fe commit 71b5dcb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
# Remove cache according to this: https://stackoverflow.com/a/73900708
# Error: Dependencies lock file is not found in /home/runner/work/unikernelalliance.org/unikernelalliance.org. Supported file patterns: package-lock.json,yarn.lock
# cache: 'npm'

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 71b5dcb

Please sign in to comment.