Skip to content

Commit

Permalink
ci: use NPM cache in setup-node@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Oct 24, 2022
1 parent 1f9a0c2 commit 29fd6d3
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
@@ -25,9 +25,10 @@ jobs:
- uses: actions/checkout@v3

- name: Set Node.js 16.x
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm

- name: Install dependencies
run: npm ci
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -11,9 +11,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- uses: actions/checkout@v3
- run: npm ci
- run: npm run build

0 comments on commit 29fd6d3

Please sign in to comment.