Skip to content

Commit 1913025

Browse files
committed
Add Node.js v22 to CI matrix
1 parent 76f3c2b commit 1913025

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/ci.yml

+9-5
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)