feat(devtools-ui): add Payload tab to inspector panel #133
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - name: Build | |
| run: pnpm build | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Test | |
| run: pnpm test | |
| - name: Install Playwright browsers | |
| working-directory: e2e | |
| run: npx playwright install --with-deps chromium | |
| - name: E2E tests (Chrome) | |
| working-directory: e2e | |
| run: xvfb-run --auto-servernum npx playwright test --project=chrome --ignore-snapshots --grep-invert "firefox build" | |
| - name: Build Firefox extension | |
| run: pnpm --filter @wolfcola/devtools-extension build:firefox | |
| - name: E2E tests (Firefox build verification) | |
| working-directory: e2e | |
| run: npx playwright test tests/firefox-build.test.ts --project=chrome |