-
Notifications
You must be signed in to change notification settings - Fork 3
107 lines (102 loc) · 2.84 KB
/
Copy pathtest.yaml
File metadata and controls
107 lines (102 loc) · 2.84 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: CI
on:
pull_request:
merge_group:
push:
branches:
- main
jobs:
# INSTALL DEPS
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.17.0"
- name: Enable Corepack
run: corepack enable
- name: Install deps via Yarn
run: yarn install --immutable
- name: Zip node_modules and yarn state
run: tar czf yarn_node_modules.tar.gz node_modules/ .yarn/install-state.gz
- name: Upload deps artifacts
uses: actions/upload-artifact@v4
with:
name: yarn_node_modules.tar.gz
path: yarn_node_modules.tar.gz
# TEST
test:
runs-on: ubuntu-latest
timeout-minutes: 25
needs: [install]
env:
DISPLAY: :0
VITEST_SEGFAULT_RETRY: 3
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.17.0"
- name: Enable Corepack
run: corepack enable
- name: Download deps cache artifacts
uses: actions/download-artifact@v4
with:
name: yarn_node_modules.tar.gz
- name: Unzip node_modules and yarn state
run: tar xzf yarn_node_modules.tar.gz
- name: Append GitHub Access Token to .env
run: echo "ETH_MAINNET_RPC=${{ secrets.ETH_MAINNET_RPC }}" >> .env
- name: Install Anvil
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run tests
uses: nick-fields/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: yarn test
# BUILD
build:
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.17.0"
- name: Enable Corepack
run: corepack enable
- name: Download deps cache artifacts
uses: actions/download-artifact@v4
with:
name: yarn_node_modules.tar.gz
- name: Unzip node_modules and yarn state
run: tar xzf yarn_node_modules.tar.gz
- name: Build
run: yarn build --listEmittedFiles
# LINT, TYPECHECK, AUDIT
ci-checks:
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.17.0"
- name: Enable Corepack
run: corepack enable
- name: Download deps cache artifacts
uses: actions/download-artifact@v4
with:
name: yarn_node_modules.tar.gz
- name: Unzip node_modules and yarn state
run: tar xzf yarn_node_modules.tar.gz
- name: Lint
run: yarn lint
- name: Audit CI
run: yarn npm audit --no-deprecations
- name: Check types
run: yarn typecheck