We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0a0e3 commit 66b4079Copy full SHA for 66b4079
.github/workflows/ci.yml
@@ -12,18 +12,24 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [12.x, 14.x, 16.x]
+ node-version:
16
+ - 14
17
+ - 18
18
19
steps:
- - uses: actions/checkout@v2
20
+ - name: Checkout repository
21
+ uses: actions/checkout@v2
22
+
23
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
24
+ uses: actions/setup-node@v2
25
with:
26
node-version: ${{ matrix.node-version }}
27
- - run: npm ci
28
+ - name: Install dependencies
29
+ run: npm ci
30
- - run: npm test
31
+ - name: Run tests
32
+ run: npm test
33
env:
34
CI: true
35
timeout-minutes: 10
0 commit comments