We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 411091a commit 3faacdaCopy full SHA for 3faacda
.github/workflows/test-workflow.yml
@@ -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