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