fixed update-listener not working #160
Workflow file for this run
This file contains 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: Test Only @scoped | |
on: | |
push: | |
branches: | |
- '*/*' | |
- '!master' | |
- '!develop' | |
paths: | |
- 'src/**' | |
- 'tests/**' | |
- 'playwright.config.ts' | |
- 'pnpm-lock.yaml' | |
workflow_dispatch: | |
inputs: | |
debug: | |
description: 'Enable debug logging' | |
required: false | |
default: 'false' | |
jobs: | |
fast-build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
browser: [chrome, edge, chromium] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build And Package Extensions | |
run: pnpm build --zip --target=${{ matrix.browser }}-mv3 | |
env: | |
DEBUG: true | |
# upload to github artifacts for each browser with matrix | |
- name: Upload to GitHub Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.browser }}-mv3 | |
path: build/ | |
fast-test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
project: [units, integrations] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Cache playwright binaries | |
uses: actions/cache@v3 | |
id: playwright-cache | |
with: | |
path: ~/.cache/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- run: pnpm exec playwright install --with-deps | |
if: steps.playwright-cache.outputs.cache-hit != 'true' | |
- name: Test | |
id: test | |
run: | | |
pnpm test -- --project=${{ matrix.project }} \ | |
--grep=@scoped \ | |
--pass-with-no-tests \ | |
--global-timeout=3600000 \ | |
--max-failures=1 \ | |
--retries=3 | |
env: | |
DEBUG: true | |
fast-e2e-test: | |
runs-on: ubuntu-latest | |
needs: fast-test | |
strategy: | |
fail-fast: false | |
matrix: | |
browser: [chrome, edge] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build Extension and Prepare Tests | |
run: pnpm test:rebuild | |
env: | |
DEBUG: true | |
- name: Cache playwright binaries | |
uses: actions/cache@v3 | |
id: playwright-cache | |
with: | |
path: ~/.cache/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- run: pnpm exec playwright install --with-deps | |
if: steps.playwright-cache.outputs.cache-hit != 'true' | |
- name: Test | |
id: test | |
run: | | |
pnpm test -- --project=${{ matrix.browser }} \ | |
--grep=@scoped \ | |
--pass-with-no-tests \ | |
--global-timeout=3600000 \ | |
--timeout=60000 \ | |
--max-failures=1 \ | |
--retries=3 | |
env: | |
DEBUG: true | |
- name: Upload Test Results | |
if: failure() && steps.test.conclusion != 'skipped' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.browser }}-test-results | |
path: | | |
test-results/ | |
playwright-report/ | |
if-no-files-found: ignore |