Skip to content

Commit 3faacda

Browse files
committed
Add test workflow using wait-on-check-action
1 parent 411091a commit 3faacda

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Main
2+
3+
on:
4+
pull_request:
5+
6+
env:
7+
# Among other things, opts out of Turborepo telemetry. See https://consoledonottrack.com/.
8+
DO_NOT_TRACK: '1'
9+
NODE_VERSION: 18
10+
CODAMA_VERSION: 1.x
11+
SOLANA_VERSION: 1.18.12
12+
13+
jobs:
14+
after-test:
15+
name: After Test
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Wait for CI checks
19+
uses: lewagon/[email protected]
20+
with:
21+
ref: ${{ github.event.pull_request.head.sha }}
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}
23+
wait-interval: 10
24+
running-workflow-name: 'After Test' # Skip current workflow
25+
26+
- name: Echo after waiting
27+
run: echo "After CI checks..."

0 commit comments

Comments
 (0)