-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (37 loc) · 1020 Bytes
/
ci.action.yaml
File metadata and controls
43 lines (37 loc) · 1020 Bytes
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
name: Check - CI Github Action
on:
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pr-sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Run Syncoor Test
uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
repository: https://github.com/${{ github.repository }}.git
git-ref: ${{ github.event.pull_request.head.sha }}
log-force-colors: true
client-logs: true
network: hoodi
el-client: reth
el-extra-args: >-
[
"--full",
"--disable-discovery"
]
cl-client: prysm
cl-env-vars: >-
[
"SOME_VAR=has-something"
]
check-interval: 30s
public: true
log-level: debug
run-timeout: 2m # We expect the run to timeout. It will still be marked as success in CI.