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 3481a14 commit be61f56Copy full SHA for be61f56
.github/actions/build-and-test.yml
@@ -0,0 +1,26 @@
1
+
2
+name: Build and test
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
+jobs:
9
+ buildAndTest:
10
+ name: Build and test (Node.js v${{ matrix.node-version }})
11
+ timeout-minutes: 15
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ node-version: [14]
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Install Node.js
19
+ uses: actions/setup-node@v2
20
+ with:
21
+ node-version: ${{ matrix.node-version }}
22
+ - name: Install install dependencies
23
+ run: npm ci
24
+ - name: test
25
+ run: npm test
26
0 commit comments