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 02c1f34 commit 31951d4Copy full SHA for 31951d4
.github/workflows/main.yml
@@ -0,0 +1,36 @@
1
+name: CI
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ test:
9
+ name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ node-version:
15
+ - '14'
16
+ - '12'
17
+ - '12.0'
18
+ - '10'
19
+ - '10.12'
20
+ os:
21
+ - ubuntu-latest
22
+ steps:
23
+ - uses: actions/checkout@v2
24
+ - uses: actions/setup-node@v2
25
+ with:
26
+ node-version: ${{ matrix.node-version }}
27
+ - run: npm install
28
+ - run: npm test
29
30
+ lint:
31
+ runs-on: ubuntu-latest
32
33
34
35
36
+ - run: npm run lint
.travis.yml
0 commit comments