Skip to content

Commit

Permalink
chore: test on Node 23 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Feb 25, 2025
1 parent fcfb08a commit f1a61f3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [22, 23]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
Expand All @@ -31,10 +32,10 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0

- name: Install Node 22
- name: Install Node
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: 22
node-version: ${{ matrix.node }}
cache: 'pnpm'

- name: Install dependencies
Expand Down

0 comments on commit f1a61f3

Please sign in to comment.