-
-
Notifications
You must be signed in to change notification settings - Fork 274
42 lines (32 loc) · 930 Bytes
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Tests
on: push
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
cache: "yarn"
- name: Install packages
run: yarn install
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Typecheck
run: yarn typecheck
- name: Clear Jest
run: yarn jest --clearCache
- name: Test
run: yarn test --coverage
# - name: Send Report
# uses: paambaati/codeclimate-action@v3.0.0
# env:
# CC_TEST_REPORTER_ID: 7d1e3713df373ab2c9efce24b85c16efa2bd953aae32bd9d278004784d71291e
# with:
# coverageLocations: ${{github.workspace}}/coverage/lcov.info:lcov