-
Notifications
You must be signed in to change notification settings - Fork 81
57 lines (44 loc) · 1.29 KB
/
ci.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Tests and Checks
on: [pull_request]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
env:
NODE_OPTIONS: "--max_old_space_size=4096"
VITE_ENV: "ci"
VITE_CODEGEN_UNRESTRICTED_NODE_REAL_API_KEY: ${{ secrets.VITE_CODEGEN_UNRESTRICTED_NODE_REAL_API_KEY }}
VITE_CODEGEN_UNRESTRICTED_THE_GRAPH_API_KEY: ${{ secrets.VITE_CODEGEN_UNRESTRICTED_THE_GRAPH_API_KEY }}
jobs:
checks:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "20.11.1"
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Typecheck
run: yarn tsc
- name: Lint
run: yarn lint
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "20.11.1"
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Run tests and collect coverage
run: yarn test --coverage
- name: "Report coverage"
if: always() # Also generate the report even if tests are failing
uses: davelosert/vitest-coverage-report-action@v2
with:
working-directory: "./apps/evm"