chore(deps-dev): bump typescript-eslint from 8.47.0 to 8.54.0 #357
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: changelog-validate | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - "**" | ||
| push: | ||
| branches: [develop] | ||
| paths: | ||
| - 'CHANGELOG.md' | ||
| workflow_call: | ||
| secrets: | ||
| GITHUB_TOKEN: | ||
| required: false | ||
| jobs: | ||
| validate: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Setup Node | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '20' | ||
| - name: Validate changelog schema | ||
| run: | | ||
| node scripts/agents/includes/changelogUtils.cjs --validate CHANGELOG.md | ||
| node scripts/validation/validate-changelog.cjs CHANGELOG.md | ||