[bot] - Update lists #1483
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: Validation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
verify: | |
name: Checksum check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Use Node 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Install deps | |
run: npm install | |
- name: Verify tokens | |
run: node ./.github/scripts/verify-tokens.mjs | |
- name: Verify chains | |
run: node ./.github/scripts/verify-chains.mjs |