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 5c25d39 commit 3adfa6cCopy full SHA for 3adfa6c
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: Node CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ strategy:
10
+ matrix:
11
+ node-version: [8.x, 10.x, 12.x]
12
13
+ steps:
14
+ - uses: actions/checkout@v1
15
+ - name: Use Node.js ${{ matrix.node-version }}
16
+ uses: actions/setup-node@v1
17
+ with:
18
+ node-version: ${{ matrix.node-version }}
19
+ - name: npm install, build, and test
20
+ run: |
21
+ npm install
22
+ npm run lint:ci
23
+ npm run test:ci
24
+ npm run build
25
+ npm run docs:build
26
+ env:
27
+ CI: true
0 commit comments