We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe40ae3 commit feea1f9Copy full SHA for feea1f9
.github/workflows/ci.yml
@@ -0,0 +1,36 @@
1
+name: CI
2
+
3
+on: pull_request
4
5
+jobs:
6
+ test:
7
+ name: Test
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - name: Checkout code
12
+ uses: actions/checkout@v3
13
+ - name: Setup Node
14
+ uses: actions/setup-node@v3
15
+ with:
16
+ cache: npm
17
+ - name: Install dependencies
18
+ run: npm ci
19
+ - name: Run tests
20
+ run: npm test
21
22
+ lint:
23
+ name: Lint
24
25
26
27
28
29
30
31
32
33
34
35
+ - name: Type check
36
+ run: npm run check
.github/workflows/main.yml
0 commit comments