We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfacd25 commit 18ee8daCopy full SHA for 18ee8da
1 file changed
.github/workflows/nodejs.yml
@@ -0,0 +1,21 @@
1
+name: Node CI
2
+on: [push, pull_request]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ node-version: [13.x]
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ - name: Use Node.js ${{ matrix.node-version }}
12
+ uses: actions/setup-node@v1
13
+ with:
14
+ node-version: ${{ matrix.node-version }}
15
+ - name: npm install, build, and test
16
+ run: |
17
+ npm ci
18
+ npm run build --if-present
19
+ npm test
20
+ env:
21
+ CI: true
0 commit comments