-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finished recorder feature and test cases
- Loading branch information
Showing
68 changed files
with
22,711 additions
and
588 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,19 @@ | ||
name: Build And Test Extensions | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'develop' | ||
paths: | ||
- 'src/**' | ||
- 'tests/**' | ||
- 'playwright.config.ts' | ||
- 'pnpm-lock.yaml' | ||
- '.github/workflows/build-test.yml' | ||
pull_request: | ||
branches: [develop] | ||
branches: [develop, master] | ||
types: | ||
- opened | ||
- reopened | ||
- ready_for_review | ||
- review_requested | ||
paths: | ||
- 'src/**' | ||
- 'tests/**' | ||
- 'playwright.config.ts' | ||
- 'pnpm-lock.yaml' | ||
- '.github/workflows/build-test.yml' | ||
workflow_dispatch: | ||
inputs: | ||
debug: | ||
|
@@ -45,6 +42,8 @@ jobs: | |
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 | ||
|
@@ -61,6 +60,9 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Ensure No @Scoped Test | ||
run: grep -r --include "*.spec.ts" "@scoped" && echo "please remove @scoped from tests" && exit 1 || echo "No @scoped tests found" | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
- name: Setup Node.js | ||
uses: actions/[email protected] | ||
with: | ||
|
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
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
Oops, something went wrong.