Remove dry-run mode from release workflow #10
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: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| test: | |
| name: Test & Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v5 | |
| with: | |
| version: latest | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm exec wxt prepare | |
| - name: Format check | |
| run: pnpm format:check | |
| - name: Unit tests | |
| run: pnpm test | |
| - name: Build | |
| run: pnpm build | |
| - name: Type check | |
| run: pnpm check | |
| - name: Install Playwright browsers | |
| run: pnpm exec playwright install --with-deps chromium | |
| - name: E2E tests | |
| run: xvfb-run pnpm exec playwright test e2e/popup.spec.ts | |
| - name: Upload build artifact | |
| if: github.ref == 'refs/heads/master' | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: chrome-mv3 | |
| path: .output/chrome-mv3/ | |
| retention-days: 30 |