-
Notifications
You must be signed in to change notification settings - Fork 7
178 lines (162 loc) · 5.18 KB
/
ci.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
name: CI
on:
pull_request:
push:
branches:
- main
# when new commit is pushed to a branch, cancel previous runs
# https://stackoverflow.com/a/67939898/580181
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
node: [ "20" ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.14.2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- run: pnpm install
- run: pnpm build
env:
# at the end of the build, upload sourcemaps to sentry but only on main branch
SENTRY_AUTH_TOKEN: ${{ github.ref == 'refs/heads/main' && secrets.SENTRY_AUTH_TOKEN || '' }}
SENTRY_ORG: ${{ github.ref == 'refs/heads/main' && secrets.SENTRY_ORG || '' }}
SENTRY_PROJECT: ${{ github.ref == 'refs/heads/main' && secrets.SENTRY_PROJECT || '' }}
- uses: krzkaczor/size-limit-action@master
if: github.ref != 'refs/heads/main'
with:
skip_step: build # already built
directory: packages/app
github_token: ${{ secrets.GITHUB_TOKEN }}
package_manager: pnpm
debug-common-testnets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.14.2
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install Foundry
uses: foundry-rs/[email protected]
with:
version: nightly-58bf161bc9dd6e74de8cb61e3ae23f701feb5512
- run: |
pnpm install
pnpm run test
env:
TENDERLY_API_KEY: "${{ secrets.TENDERLY_API_KEY }}"
TENDERLY_ACCOUNT: phoenixlabs
TENDERLY_PROJECT: spark-app-e2e-tests
TEST_E2E_ALCHEMY_API_KEY: "${{ secrets.ALCHEMY_API_KEY }}"
working-directory: ./packages/common-testnets
# test:
# strategy:
# matrix:
# node: [ "20" ]
# os: [ ubuntu-latest ]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - uses: pnpm/action-setup@v4
# with:
# version: 9.14.2
# - uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
# cache: "pnpm"
# - run: pnpm install
# - name: Install Foundry
# uses: foundry-rs/[email protected]
# with:
# version: nightly-58bf161bc9dd6e74de8cb61e3ae23f701feb5512
# - run: pnpm check
# - run: pnpm verify # does linting, type checking, and tests in parallel
# env:
# TENDERLY_API_KEY: "${{ secrets.TENDERLY_API_KEY }}"
# TENDERLY_ACCOUNT: phoenixlabs
# TENDERLY_PROJECT: spark-app-e2e-tests
# TEST_E2E_ALCHEMY_API_KEY: "${{ secrets.ALCHEMY_API_KEY }}"
# storybook-visual-regression:
# strategy:
# matrix:
# node: [ "20" ]
# os: [ ubicloud-standard-4 ]
# runs-on: ${{ matrix.os }}
# timeout-minutes: 10
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - uses: pnpm/action-setup@v4
# with:
# version: 9.14.2
# - uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
# cache: "pnpm"
# - run: pnpm install
# - name: Publish to Chromatic
# uses: chromaui/action@latest
# with:
# workingDir: packages/app
# buildScriptName: storybook:build
# projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
# autoAcceptChanges: main
# onlyChanged: true
# externals: |
# public/**
# src/fonts/**
# src/ui/assets/**
# test-e2e:
# strategy:
# fail-fast: false
# matrix:
# node: [ "20" ]
# os: [ ubicloud-standard-16 ]
# runs-on: ${{ matrix.os }}
# timeout-minutes: 20
# steps:
# - uses: actions/checkout@v4
# - uses: pnpm/action-setup@v4
# with:
# version: 9.14.2
# - uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
# cache: "pnpm"
# - run: pnpm install
# - run: pnpm run build
# - name: TMP fix MS repos
# run: |
# sudo rm /etc/apt/sources.list.d/microsoft-prod.list
# sudo apt-get update
# - run: pnpm exec playwright install --with-deps chromium
# working-directory: ./packages/app
# - run: pnpm run test-e2e
# working-directory: ./packages/app
# env:
# TENDERLY_API_KEY: "${{ secrets.TENDERLY_API_KEY }}"
# TENDERLY_ACCOUNT: phoenixlabs
# TENDERLY_PROJECT: spark-app-e2e-tests
# PLAYWRIGHT_TRACE: 1
# - name: Upload report to GitHub Actions Artifacts
# if: failure()
# uses: actions/upload-artifact@v4
# with:
# name: test-e2e-report
# path: packages/app/playwright-report
# retention-days: 3