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 ada08a6 commit 0c88696Copy full SHA for 0c88696
.github/workflows/test.yml
@@ -0,0 +1,29 @@
1
+name: Test
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
+
8
+jobs:
9
+ build-and-test:
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ node: ['10', '12', '14']
14
+ name: Node ${{ matrix.node }} Test
15
+ steps:
16
+ - name: Check out code
17
+ uses: actions/checkout@v2
18
19
+ - name: Setup Node
20
+ uses: actions/setup-node@v1
21
+ with:
22
+ node-version: ${{ matrix.node }}
23
+ - name: Install Node Modules
24
+ run: npm install
25
26
+ - name: Run tests
27
+ env:
28
+ SANDBOX_API_KEY: ${{ secrets.SANDBOX_API_KEY }}
29
+ run: npm test
0 commit comments