We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76f3c2b commit 1913025Copy full SHA for 1913025
.github/workflows/ci.yml
@@ -1,16 +1,20 @@
1
name: CI
2
3
-on: push
+on:
4
+ push:
5
+ workflow_dispatch:
6
7
jobs:
- lint-and-test:
8
+ lint-test:
9
+ name: Lint & test
10
runs-on: ubuntu-latest
11
strategy:
12
matrix:
- node-version: ['18.x', '20.x']
13
+ node-version: ['18.x', '20.x', '22.x']
14
steps:
- - uses: actions/checkout@v4
- - 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 }}
18
uses: actions/setup-node@v4
19
with:
20
node-version: ${{ matrix.node-version }}
0 commit comments