Skip to content

Commit a21dc30

Browse files
committed
fix: action
1 parent 1e2d6e0 commit a21dc30

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/actions/build-and-test/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ runs:
4141
echo "edge-path=$EDGE_PATH" >> $GITHUB_OUTPUT
4242
- name: Install Puppeteer Browsers
4343
shell: bash
44-
run: npx puppeteer browsers install
44+
run: |
45+
npx puppeteer browsers install chrome
46+
npx puppeteer browsers install firefox
4547
- name: Test
4648
shell: bash
4749
env:

src/pages/background/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { createWebRequestHandler } from './request-handler/web-request-handler';
88
import { doUpgrade } from './upgrade';
99

1010
let initd = false;
11+
1112
function init() {
1213
if (initd) {
1314
return;

0 commit comments

Comments
 (0)