-
Notifications
You must be signed in to change notification settings - Fork 2.2k
71 lines (57 loc) · 1.94 KB
/
taiko-client--test.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
name: "CI"
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- "packages/taiko-client/**"
- "go.mod"
- "go.sum"
jobs:
lint:
if: contains(github.event.pull_request.labels.*.name, 'option.workflow_on') || github.event.pull_request.draft == false && github.head_ref != 'release-please-*'
name: Lint
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
cache: true
- name: Install golangci-lint
run: go install -v github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.0
- name: Lint
working-directory: packages/taiko-client
run: golangci-lint run --path-prefix=./ --config=.golangci.yml
integration_tests:
if: contains(github.event.pull_request.labels.*.name, 'option.workflow_on') || github.event.pull_request.draft == false && github.head_ref != 'release-please-*'
name: Integration tests
runs-on: [ubuntu-latest]
timeout-minutes: 15
strategy:
matrix:
execution_node: [l2_geth]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
cache: true
- name: Install pnpm dependencies
uses: ./.github/actions/install-pnpm-dependencies
- name: Run Tests on ${{ matrix.execution_node }} execution engine
working-directory: packages/taiko-client
env:
L2_NODE: ${{ matrix.execution_node }}
run: make test
- name: Codecov.io
uses: codecov/codecov-action@v4
with:
files: packages/taiko-client/coverage.out