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 70ca104 commit 6baa0f1Copy full SHA for 6baa0f1
1 file changed
workflows/build.yml
@@ -0,0 +1,29 @@
1
+name: Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ strategy:
10
+ matrix:
11
+ node-version:
12
+ - 10.x
13
+ - 12.x
14
15
+ steps:
16
+ - uses: actions/checkout@v1
17
+ - name: Use Node.js ${{ matrix.node-version }}
18
+ uses: actions/setup-node@v1
19
+ with:
20
+ node-version: ${{ matrix.node-version }}
21
+ - name: Install
22
+ run: |
23
+ yarn install \
24
+ --non-interactive \
25
+ --frozen-lockfile
26
+ - name: Test
27
+ run: yarn test
28
+ env:
29
+ CI: true
0 commit comments