chore: upgrade pkgs #756
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: 'Linting and Testing' | |
| on: pull_request | |
| concurrency: | |
| group: lint-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| run-tests: | |
| name: 'Run Tests' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Node.js and use yarn | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'yarn' | |
| - name: Ensure Yarn is available | |
| run: corepack enable | |
| - name: Install dependencies (immutable) | |
| run: yarn install --immutable | |
| - name: Check formatting with Prettier | |
| run: yarn format-check-all | |
| - name: Lint JavaScript with ESLint | |
| run: yarn lint | |
| - name: Lint CSS with Stylelint | |
| run: yarn lint-css | |
| - name: Check TypeScript compilation | |
| run: yarn lint-ts |