Skip to content

Commit

Permalink
chore: remove explicit node versions from actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kurkle committed Dec 10, 2022
1 parent f4dc3cf commit e59468f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 16
- name: Build
run: |
npm ci
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 16
- run: |
npm ci
npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
registry-url: https://registry.npmjs.org/
- name: Build
run: |
Expand Down

0 comments on commit e59468f

Please sign in to comment.