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 3911faa commit a16fb94Copy full SHA for a16fb94
1 file changed
.github/workflows/checks.yaml
@@ -0,0 +1,37 @@
1
+name: checks
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+jobs:
9
+ lint:
10
+ runs-on: ubuntu-22.04
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-node@v3
14
+ with:
15
+ node-version: 16
16
+ - run: npm ci
17
+ - run: npm run lint
18
19
+ test:
20
21
22
23
24
25
26
27
+ - run: npm run test:coverage
28
29
+ build: # sanity check that build does not throw errors
30
31
32
33
34
35
36
37
+ - run: npm run build
0 commit comments