Skip to content

Commit

Permalink
update workflows to use node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
bumblehead committed May 31, 2023
1 parent 7987cf0 commit c29e5ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 12
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
- name: lint
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '20.x'
- run: npm install
- run: npm run lint
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- run: npm install
- run: npm run build --if-present
- run: npm run test-ci
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 20
registry-url: https://npm.pkg.github.com/
- name: Insert repository owner as scope into package name
run: |
Expand Down

0 comments on commit c29e5ab

Please sign in to comment.