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 b6b5aec commit e318ea2Copy full SHA for e318ea2
.github/workflows/verify-build.yml
@@ -0,0 +1,31 @@
1
+name: Verify build
2
+
3
+on:
4
+ workflow_dispatch:
5
+ pull_request_target:
6
+ types: [ opened, synchronize, reopened ]
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v3
14
15
+ - name: install
16
+ run: npm ci
17
18
+ - name: build
19
+ run: npm run build
20
21
+ test:
22
23
24
25
26
27
28
29
30
+ - name: test
31
+ run: npm run test
0 commit comments