Add entry 10002: Provisional First Responder Credentials. #2
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: Lint pull request | |
| on: | |
| pull_request: | |
| paths: | |
| - 'tables/**.yml' | |
| jobs: | |
| # Build the registry | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js v22 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| - name: Install registry tooling | |
| run: npm i | |
| - name: Generate registry index | |
| run: | |
| npm run build | |
| test -e tables/index.json |