Health #45238
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Health | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '*/30 * * * *' # every 30 minutes | |
jobs: | |
test: | |
name: Health Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: | | |
**/node_modules | |
${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependencies | |
if: steps.yarn-cache.outputs.cache-hit != 'true' | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build | |
- name: Setup tenderly | |
run: | | |
mkdir ~/.tenderly | |
touch ~/.tenderly/config.yaml | |
echo "access_key: $TENDERLY_ACCESS_KEY" >> ~/.tenderly/config.yaml | |
env: | |
TENDERLY_ACCESS_KEY: ${{ secrets.TENDERLY_ACCESS_KEY }} | |
- name: Test deployment and network health | |
run: yarn test:health | |
env: | |
TENDERLY_PROJECT: v3-temp-forks | |
TENDERLY_TEST_PROJECT: v3-temp-forks | |
TENDERLY_USERNAME: bancor | |
TENDERLY_ACCESS_KEY: ${{ secrets.TENDERLY_ACCESS_KEY }} |