Release PR #2000
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 | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| # Explicitly declare permissions (security best practice) | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| # Prevent multiple workflow runs from racing | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| continue-on-error: false | |
| - name: Validate changesets | |
| run: npm run validate:changesets | |
| continue-on-error: false | |
| - name: Run ESLint | |
| run: npm run lint | |
| continue-on-error: false |