fix: replace presigned S3 URLs with server-side proxy for reports (#14) #2
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: Lint & Type Check | |
| on: | |
| workflow_call: | |
| push: | |
| branches: [main] | |
| jobs: | |
| biome: | |
| name: Biome (Lint & Format Packages) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run Biome check | |
| run: pnpm check | |
| lint-dashboard: | |
| name: ESLint Dashboard | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run ESLint | |
| run: pnpm --filter @playwright-manager/dashboard lint | |
| typecheck-packages: | |
| name: Type Check Packages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Type check reporter | |
| run: pnpm --filter @playwright-manager/reporter build | |
| - name: Type check fixture | |
| run: pnpm --filter @playwright-manager/fixture build | |
| - name: Type check eslint-plugin | |
| run: pnpm --filter @playwright-manager/eslint-plugin build |