1 parent 7daf375 commit 21fb57eCopy full SHA for 21fb57e
1 file changed
.github/workflows/main.yml
@@ -1,27 +1,25 @@
1
name: CI
2
3
on:
4
- push:
5
- branches:
6
- - master
7
- pull_request:
8
9
+ - push
+ - pull_request
10
11
jobs:
12
test:
13
-
+ name: Node.js ${{ matrix.node-version }}
14
runs-on: ubuntu-latest
15
16
strategy:
17
fail-fast: false
18
matrix:
19
- node-version: [12.x, 14.x, 16.x]
+ node-version:
+ - 18
+ - 16
+ - 14
20
21
steps:
22
- - uses: actions/checkout@v2
23
- - name: Node.js ${{ matrix.node-version }}
24
- uses: actions/setup-node@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-node@v3
25
with:
26
node-version: ${{ matrix.node-version }}
27
- run: npm install
0 commit comments