Skip to content

Commit 562917d

Browse files
authored
Add Node.js v22 to CI matrix (#11)
1 parent 2bbe2aa commit 562917d

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
name: CI
22

3-
on: push
3+
on:
4+
push:
5+
workflow_dispatch:
46

57
jobs:
6-
lint-and-test:
8+
lint-test:
9+
name: Lint & test
710
runs-on: ubuntu-latest
811
strategy:
912
matrix:
10-
node-version: ['18.x', '20.x']
13+
node-version: ['18.x', '20.x', '22.x']
1114
steps:
12-
- uses: actions/checkout@v4
13-
- name: Setup Node.js v${{ matrix.node-version }}
15+
- name: Check out repository
16+
uses: actions/checkout@v4
17+
- name: Set up Node.js v${{ matrix.node-version }}
1418
uses: actions/setup-node@v4
1519
with:
1620
node-version: ${{ matrix.node-version }}

0 commit comments

Comments
 (0)