Skip to content

Commit

Permalink
Merge pull request #476 from kitsuyui/update-ci-node-version
Browse files Browse the repository at this point in the history
Update CI node version
  • Loading branch information
kitsuyui authored Dec 27, 2024
2 parents a75f6d9 + f11fa2e commit 4aa565f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: '20.x'
# https://nodejs.org/en/about/previous-releases
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.x, 20.x, 21.x]
# https://nodejs.org/en/about/previous-releases
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -47,7 +48,8 @@ jobs:
run: pnpm pack

- name: Upload coverage to Codecov
if: matrix.node-version == '20.x'
# https://nodejs.org/en/about/previous-releases
if: matrix.node-version == '22.x'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/typedoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20.x
# https://nodejs.org/en/about/previous-releases
node-version: 22.x

- run: pnpm install

Expand Down

0 comments on commit 4aa565f

Please sign in to comment.