-
Notifications
You must be signed in to change notification settings - Fork 102
88 lines (76 loc) · 2.04 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
79
80
81
82
83
84
85
86
87
88
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: [16, 18]
steps:
- name: Clone repository
uses: actions/checkout@v3
- 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:
node-version: [16, 18]
database: [postgres, sqlite]
services:
postgres:
# This skips the postgres service setup for SQLite test runs.
image: ${{ matrix.database == 'postgres' && 'postgres' || '' }}
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Test
run: pnpm test:ci:core
env:
ANVIL_FORK_URL: ${{ secrets.ANVIL_FORK_URL }}
ANVIL_BLOCK_NUMBER: ${{ secrets.ANVIL_BLOCK_NUMBER }}
DATABASE_URL: ${{ matrix.database == 'postgres' && 'postgresql://postgres:postgres@localhost:5432/postgres' || '' }}
test-create-ponder:
name: Test (create-ponder)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16, 18]
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Test
run: pnpm test:ci:create-ponder
env:
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}