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 0751b9b commit ded09b9Copy full SHA for ded09b9
.github/workflows/nodejs.yml
@@ -0,0 +1,16 @@
1
+name: Node.js CI
2
+on: [push]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v2
8
+ - name: Use Node.js
9
+ uses: actions/setup-node@v1
10
+ with:
11
+ node-version: '14.x'
12
+ - run: npm install
13
+ - run: npm run build --if-present
14
+ - run: npm test
15
+ env:
16
+ CI: true
.travis.yml
0 commit comments