chore(dependencies): update dependency vue-tsc to v3.1.2 - autoclosed #777
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: Ensures the PR doesn't break the build | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - unlocked | |
| workflow_dispatch: | |
| jobs: | |
| pr-check: | |
| name: "PR Check" | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: "Install pnpm" | |
| uses: pnpm/action-setup@v4 | |
| - name: "Bump Node.js to v25" | |
| uses: actions/setup-node@v6 | |
| with: | |
| check-latest: true | |
| node-version: latest | |
| - name: "Install dependencies" | |
| run: pnpm i --frozen-lockfile | |
| - name: "Types check" | |
| run: pnpm typecheck | |
| - name: "Lint check" | |
| run: pnpm lint | |
| - name: "Build check" | |
| run: pnpm generate # Builds Client and Server SSR + Generates SSG | |
| - name: "Upload artifact" | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: nuxt-output | |
| path: ./.output/* | |
| - name: "Analyze check" | |
| run: pnpm analyze |