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 5f05436 commit 547104dCopy full SHA for 547104d
.github/workflows/build.yml
@@ -0,0 +1,31 @@
1
+name: Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ check:
7
+ runs-on: ubuntu-latest
8
9
+ strategy:
10
+ matrix:
11
+ node-version: [10.x, 12.x, 14.x, 15.x]
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
16
+ - name: Use Node.js ${{ matrix.node-version }}
17
+ uses: actions/setup-node@v1
18
+ with:
19
+ node-version: ${{ matrix.node-version }}
20
21
+ - name: 📦 Install Dependencies
22
+ run: yarn
23
24
+ - name: 🔨 Build
25
+ run: yarn build
26
27
+ - name: 👕 Lint
28
+ run: yarn lint
29
30
+ - name: 🔬 Tests
31
+ run: yarn test
0 commit comments