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