chore: bump markdownlint-cli2 from 0.21.0 to 0.23.2 #109
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: Frontend Quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| frontend-quality: | |
| name: frontend-quality | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: Install frontend dependencies | |
| run: npm ci | |
| - name: Run frontend linting | |
| run: npm run lint | |
| - name: Run frontend unit tests with coverage | |
| run: npm run test:coverage | |
| - name: Install Playwright browsers | |
| run: npx playwright install --with-deps chromium | |
| - name: Run frontend end-to-end tests | |
| run: npm run test:e2e | |
| - name: Build frontend | |
| run: npm run build |