File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: E2E Tests and Health Checks
22
33on :
44 schedule :
5- - cron : ' */30 * * * *'
5+ - cron : ' */30 * * * *'
66 workflow_dispatch :
77 inputs :
88 datil_branch :
1414 required : true
1515 default : ' naga'
1616
17+ env :
18+ LIT_STATUS_WRITE_KEY : ${{ secrets.LIT_STATUS_WRITE_KEY }}
19+ LIT_STATUS_BACKEND_URL : ${{ vars.LIT_STATUS_BACKEND_URL }}
20+
1721jobs :
1822 datil-health-check :
1923 runs-on : ubuntu-latest
2024 strategy :
2125 fail-fast : false
2226 matrix :
2327 network : [datil-dev, datil-test, datil]
28+ max-parallel : 1
29+ env :
30+ PRIVATE_KEYS : ${{ secrets.PRIVATE_KEYS }}
2431 steps :
2532 - name : Checkout datil branch
2633 uses : actions/checkout@v4
@@ -40,10 +47,15 @@ jobs:
4047
4148 naga-health-check :
4249 runs-on : ubuntu-latest
50+ needs : datil-health-check
4351 strategy :
4452 fail-fast : false
4553 matrix :
4654 network : [naga-dev, naga-staging, naga-test]
55+ max-parallel : 1
56+ env :
57+ LIVE_MASTER_ACCOUNT : ${{ secrets.LIVE_MASTER_ACCOUNT }}
58+ LIT_YELLOWSTONE_PRIVATE_RPC_URL : ${{ vars.LIT_YELLOWSTONE_PRIVATE_RPC_URL }}
4759 steps :
4860 - name : Checkout naga branch
4961 uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments