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 9224e2c commit 3a1f6d0Copy full SHA for 3a1f6d0
.github/workflows/main.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
8
+ - "**"
9
+jobs:
10
+ build:
11
+ name: CI
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Setup node 16
16
+ uses: actions/setup-node@v2
17
+ with:
18
+ node-version: 16.x
19
+
20
+ - name: install
21
+ run: yarn
22
23
+ - name: lint
24
+ run: yarn check:lint
25
26
+ - name: format
27
+ run: yarn check:format
28
29
+ - name: ts
30
+ run: yarn check:ts
31
32
+ - name: test
33
+ run: yarn test
0 commit comments