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