Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ jobs:
run: |
npm ci

- name: Install Playwright browsers
run: |
npx playwright install chromium
- name: Install Playwright Browsers
uses: microsoft/playwright-github-action@v1
with:
browsers: chromium

- name: Run tests
run: |
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,14 @@ jobs:
run: |
npm ci --ignore-scripts

- name: Install Playwright Browsers
uses: microsoft/playwright-github-action@v1
with:
browsers: chromium

- name: Build package
run: |
npm run build

- name: Install Playwright browsers
run: |
npx playwright install chromium

- name: Build extension (if needed)
run: |
Expand Down
Loading