Update chain configurations #670
Workflow file for this run
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 | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- name: Clone @api3/chains | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run providers:ping | |
run: pnpm providers:ping |