Update data.yml #417
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: json-yaml-validate | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| json-yaml-validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: json-yaml-validate | |
| id: json-yaml-validate | |
| uses: GrantBirki/[email protected] | |
| with: | |
| comment: "true" | |
| - name: Validate Dates in data.yml | |
| run: node validateDates.js |