Bump astro from 4.16.19 to 6.4.6 #11
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 | |
| # OMDS design-token enforcement gate. | |
| # Runs on every PR (the merge blocker) and on pushes to main (backstop). | |
| # A raw color value — hex, named, or rgb()/hsl() literal on a color property — | |
| # fails the build. See stylelint.config.js. | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: {} | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci | |
| - name: Lint (design-token enforcement) | |
| run: npm run lint |