Skip to content

Commit

Permalink
ci: run tests in Node.js 22 (#67)
Browse files Browse the repository at this point in the history
* ci: run tests in Node.js 22

* Bump actions/checkout and actions/setup-node in release-please.yml
  • Loading branch information
fasttime committed Apr 25, 2024
1 parent f988b6e commit f986fec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -11,9 +11,9 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- name: Install dependencies
Expand All @@ -25,11 +25,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [21.x, 20.x, 18.x, "18.18.0"]
node: [22.x, 21.x, 20.x, 18.x, "18.18.0"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yml
Expand Up @@ -29,9 +29,9 @@ jobs:
{ "type": "refactor", "section": "Chores", "hidden": false },
{ "type": "test", "section": "Chores", "hidden": false }
]
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: lts/*
registry-url: https://registry.npmjs.org
Expand Down

0 comments on commit f986fec

Please sign in to comment.