Check Providers #55
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: Check Providers | |
on: | |
schedule: | |
# Run every day at 12:00 | |
- cron: "0 12 * * *" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'chains/**' | |
types: [opened, synchronize, reopened] | |
jobs: | |
check-providers: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone @api3/chains | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Get yarn cache directory path | |
id: deps-cache-dir-path | |
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
id: deps-cache | |
with: | |
path: ${{ steps.deps-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile | |
- name: Run providers:ping | |
run: yarn providers:ping | |