Cardano metrics update for 2026-08-10 (network and geography layers) #253
Workflow file for this run
This file contains hidden or 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: CSV Validation | |
| # Only run when CSV data files are modified — not on every push. | |
| concurrency: | |
| group: csv-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| paths: | |
| - 'public/output/**/*.csv' | |
| pull_request: | |
| paths: | |
| - 'public/output/**/*.csv' | |
| jobs: | |
| validate-csv: | |
| name: Validate CSV files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Setup Node + dependencies | |
| uses: ./.github/actions/setup-node-npm | |
| with: | |
| node-version: '22' | |
| - name: Validate public/output/**/*.csv | |
| id: csv_check | |
| run: node scripts/validate-csvs.mjs | |