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 cdd78ad commit 38fc545Copy full SHA for 38fc545
.github/workflows/nodejs.yml
@@ -0,0 +1,22 @@
1
+name: Node.js 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@v2
15
+ - name: Use Node.js ${{ matrix.node-version }}
16
+ uses: actions/setup-node@v1
17
+ with:
18
+ node-version: ${{ matrix.node-version }}
19
+ - run: npm install
20
+ - run: npm test
21
+ env:
22
+ CI: true
.travis.yml
@@ -1,6 +1,8 @@
language: node_js
node_js:
- stable
+ - 12
+ - 10
- 8
after_success:
0 commit comments