chore(deps-dev): bump happy-dom from 20.8.4 to 20.8.9 #416
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: Code Quality | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| quality: | |
| name: Run Affected Typcheck, Lint and Format Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: "pnpm" | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Check Nx Sync | |
| run: pnpm nx sync:check | |
| - name: Check Generated Drizzle Schemas | |
| run: pnpm check:generated-schemas | |
| - name: Derive SHAs for affected | |
| uses: nrwl/nx-set-shas@v4 | |
| - name: Run Affected Tasks | |
| run: | | |
| pnpm exec nx affected \ | |
| --targets=lint,typecheck,fmt:check \ | |
| --parallel=3 |