Skip to content

Commit

Permalink
chore: Use Node 20.x in pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
javierbrea committed Aug 19, 2023
1 parent 65d2809 commit b1f5b95
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14.16.1", "16.13.0", "17.0.1", "18.2.0"]
node: ["14.16.1", "16.13.0", "17.0.1", "18.2.0", "20.5.1"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -49,10 +49,10 @@ jobs:
path: coverage
retention-days: 1
test-windows:
runs-on: windows-2019
runs-on: windows-2022
strategy:
matrix:
node: ["14.16.1", "16.13.0", "17.0.1", "18.2.0"]
node: ["14.16.1", "16.13.0", "17.0.1", "18.2.0", "20.5.1"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Download test results
uses: actions/download-artifact@v3
with:
name: coverage-16.13.0
name: coverage-18.2.0
path: coverage
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-package-version.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1name: check-package-version
name: check-package-version
on:
pull_request:
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-github-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@javierbrea'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org/'
- run: npm ci
- run: npm publish
Expand Down

0 comments on commit b1f5b95

Please sign in to comment.