-
Notifications
You must be signed in to change notification settings - Fork 102
78 lines (65 loc) · 1.74 KB
/
main.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
name: Main
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ["Node 20"]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint
test:
name: Test [core]
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
database: [Postgres, SQLite]
node-version: ["Node 18", "Node 20"]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup Postgres
if: ${{ matrix.database == 'Postgres' }}
uses: ikalnytskyi/action-setup-postgres@v4
id: postgres
- name: Setup
uses: ./.github/actions/setup
- name: Test
run: pnpm test:core
env:
ANVIL_FORK_URL: ${{ secrets.ANVIL_FORK_URL }}
ANVIL_BLOCK_NUMBER: ${{ secrets.ANVIL_BLOCK_NUMBER }}
DATABASE_URL: ${{ matrix.database == 'Postgres' && steps.postgres.outputs.connection-uri || '' }}
test-create-ponder:
name: Test [create-ponder]
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
node-version: ["Node 18", "Node 20"]
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
- name: Test
run: pnpm test:create-ponder
env:
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}