test(e2e): post-deploy MVP smoke suite (#126) #104
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: | | |
| mkdir -p "$(pnpm bin)" | |
| printf '#!/bin/sh\nexit 0' > "$(pnpm bin)/lefthook" | |
| chmod +x "$(pnpm bin)/lefthook" | |
| pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Format check | |
| run: pnpm format:check | |
| - name: Typecheck | |
| run: pnpm typecheck | |
| continue-on-error: true | |
| - name: Test | |
| run: pnpm test | |
| continue-on-error: true |