Skip to content

Commit

Permalink
ci: sets latest used node version to 21
Browse files Browse the repository at this point in the history
  • Loading branch information
sverweij committed Oct 22, 2023
1 parent 36c3dde commit c9288e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
workflow_dispatch:

env:
NODE_LATEST: 20.x
NODE_LATEST: 21.x
PLATFORM: ubuntu-latest
CI: true
# the LANG (used by the Intl API, which we use for some of the number
Expand All @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x]
node-version: [18.x, 21.x]
platform: [ubuntu-latest]
runs-on: ${{matrix.platform}}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
node-version: 21.x
registry-url: https://registry.npmjs.org
- run: npm clean-install
- run: npm publish --provenance --access public --tag beta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
node-version: 21.x
registry-url: https://registry.npmjs.org
- run: npm clean-install
- run: npm publish --provenance --access public
Expand Down

0 comments on commit c9288e3

Please sign in to comment.