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 de4fe91 commit b89b5fbCopy full SHA for b89b5fb
.github/workflows/ci.yml
@@ -10,8 +10,8 @@ on:
10
branches: [ main ]
11
12
jobs:
13
- test:
14
- name: Test
+ lint:
+ name: Static code analysis
15
runs-on: ubuntu-latest
16
17
steps:
@@ -27,4 +27,23 @@ jobs:
27
run: yarn --immutable
28
29
- name: Run tests
30
- run: yarn test
+ run: yarn lint
31
+
32
+ unit:
33
+ name: Unit tests
34
+ runs-on: ubuntu-latest
35
36
+ steps:
37
+ - name: Checkout
38
+ uses: actions/checkout@v2
39
40
+ - name: Use Node.js
41
+ uses: actions/setup-node@v2
42
+ with:
43
+ node-version: '16'
44
45
+ - name: Install dependencies
46
+ run: yarn --immutable
47
48
+ - name: Run tests
49
+ run: yarn jest
0 commit comments