chore(deps): bump actions/deploy-pages from 4 to 5 #27
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 QA Checks" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: | |
| - synchronize | |
| - opened | |
| - ready_for_review | |
| - reopened | |
| - review_requested | |
| jobs: | |
| qa: | |
| name: Lint, type-check, test, build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6.0.2 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4.2.0 | |
| with: | |
| version: 11.1.3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6.2.0 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Prepare module + playground stubs | |
| run: pnpm dev:prepare | |
| - name: Type-check | |
| run: pnpm test:types | |
| - name: Test | |
| run: pnpm test | |
| - name: Build | |
| run: pnpm prepack |