|
19 | 19 | LIT_STATUS_BACKEND_URL: ${{ vars.LIT_STATUS_BACKEND_URL }} |
20 | 20 |
|
21 | 21 | jobs: |
22 | | - datil-health-check: |
| 22 | + datil-dev-health-check: |
23 | 23 | runs-on: ubuntu-latest |
24 | 24 | environment: Health Check |
25 | 25 | env: |
@@ -60,12 +60,82 @@ jobs: |
60 | 60 | LIT_STATUS_WRITE_KEY: ${{ secrets.LIT_STATUS_WRITE_KEY }} |
61 | 61 | LIT_STATUS_BACKEND_URL: ${{ vars.LIT_STATUS_BACKEND_URL }} |
62 | 62 |
|
| 63 | + datil-test-health-check: |
| 64 | + runs-on: ubuntu-latest |
| 65 | + environment: Health Check |
| 66 | + env: |
| 67 | + PRIVATE_KEYS: ${{ secrets.PRIVATE_KEYS }} |
| 68 | + steps: |
| 69 | + - name: Checkout datil branch |
| 70 | + uses: actions/checkout@v4 |
| 71 | + with: |
| 72 | + ref: ${{ github.event.inputs.datil_branch || 'master' }} |
| 73 | + fetch-depth: 1 |
| 74 | + |
| 75 | + - name: Setup Node.js |
| 76 | + uses: actions/setup-node@v4 |
| 77 | + with: |
| 78 | + node-version: '18' |
| 79 | + |
| 80 | + - name: Install rust |
| 81 | + uses: actions-rs/toolchain@v1 |
| 82 | + with: |
| 83 | + toolchain: stable |
| 84 | + override: true |
| 85 | + components: rust-std |
| 86 | + |
| 87 | + - name: Install wasm-pack |
| 88 | + |
| 89 | + with: |
| 90 | + version: 'latest' |
| 91 | + |
| 92 | + - name: Install Yarn dependencies |
| 93 | + run: yarn install --frozen-lockfile |
| 94 | + |
| 95 | + - name: Build project |
| 96 | + run: yarn build |
| 97 | + |
63 | 98 | - name: Run health check for datil-test |
64 | 99 | run: NETWORK=datil-test yarn ci:health |
65 | 100 | env: |
66 | 101 | LIT_STATUS_WRITE_KEY: ${{ secrets.LIT_STATUS_WRITE_KEY }} |
67 | 102 | LIT_STATUS_BACKEND_URL: ${{ vars.LIT_STATUS_BACKEND_URL }} |
68 | 103 |
|
| 104 | + datil-health-check: |
| 105 | + runs-on: ubuntu-latest |
| 106 | + environment: Health Check |
| 107 | + env: |
| 108 | + PRIVATE_KEYS: ${{ secrets.PRIVATE_KEYS }} |
| 109 | + steps: |
| 110 | + - name: Checkout datil branch |
| 111 | + uses: actions/checkout@v4 |
| 112 | + with: |
| 113 | + ref: ${{ github.event.inputs.datil_branch || 'master' }} |
| 114 | + fetch-depth: 1 |
| 115 | + |
| 116 | + - name: Setup Node.js |
| 117 | + uses: actions/setup-node@v4 |
| 118 | + with: |
| 119 | + node-version: '18' |
| 120 | + |
| 121 | + - name: Install rust |
| 122 | + uses: actions-rs/toolchain@v1 |
| 123 | + with: |
| 124 | + toolchain: stable |
| 125 | + override: true |
| 126 | + components: rust-std |
| 127 | + |
| 128 | + - name: Install wasm-pack |
| 129 | + |
| 130 | + with: |
| 131 | + version: 'latest' |
| 132 | + |
| 133 | + - name: Install Yarn dependencies |
| 134 | + run: yarn install --frozen-lockfile |
| 135 | + |
| 136 | + - name: Build project |
| 137 | + run: yarn build |
| 138 | + |
69 | 139 | - name: Run health check for datil |
70 | 140 | run: NETWORK=datil yarn ci:health |
71 | 141 | env: |
|
0 commit comments