Skip to content

Commit

Permalink
chore(ci): run on node 22
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhaenisch committed Sep 20, 2024
1 parent fa99724 commit 4678129
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,22 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
node: [16, 18, 20]
node: [16, 18, 20, 22]

runs-on: ${{ matrix.os }}

name: Node.js ${{ matrix.node }} on ${{ matrix.os }}

steps:
- uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}

- run: npm install

- run: npm run check-types

- run: npm test

0 comments on commit 4678129

Please sign in to comment.