We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62d158d commit 0e0728aCopy full SHA for 0e0728a
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,33 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ workflow_dispatch:
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ node-version: [16, 18]
14
+ steps:
15
+ - name: Checkout branch
16
+ uses: actions/checkout@v3
17
18
+ - name: Setup Node
19
+ uses: actions/setup-node@v3
20
+ with:
21
+ node-version: ${{ matrix.node-version }}
22
23
+ - name: Install
24
+ run: npm ci
25
26
+ - name: Test
27
+ run: npm run test
28
29
+ - name: Lint
30
+ run: npm run lint
31
32
+ - name: Build
33
+ run: npm run build
0 commit comments