Skip to content

Commit 972a249

Browse files
committed
test
1 parent 3c30cf3 commit 972a249

7 files changed

Lines changed: 21 additions & 7 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
shell: bash
1717
run: npm run build:chrome_v3
1818
- name: Upload bundle
19-
uses: actions/upload-artifact@v4
19+
uses: actions/upload-artifact@v7
2020
with:
2121
name: dist
2222
retention-days: 7

.github/workflows/dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
CRX_PRIV_KEY: ${{ secrets.CRX_PRIV_KEY }}
9090
PACK_PLATFORM: xpi,crx
9191
- name: Upload snapshot release
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v7
9393
with:
9494
name: release
9595
retention-days: 7
@@ -138,7 +138,7 @@ jobs:
138138
npm run build
139139
cp $GITHUB_WORKSPACE/scripts/www/* $GITHUB_WORKSPACE/docs/doc_build/
140140
- name: Upload
141-
uses: actions/upload-artifact@v4
141+
uses: actions/upload-artifact@v7
142142
with:
143143
name: docs
144144
retention-days: 1

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
npm run build
5050
cp $GITHUB_WORKSPACE/scripts/www/* $GITHUB_WORKSPACE/docs/doc_build/
5151
- name: Upload
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v7
5353
with:
5454
name: docs
5555
retention-days: 1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
MS_CLIENT_ID: ${{ secrets.ORG_MS_CLIENT_ID }}
6161
MS_API_KEY: ${{ secrets.ORG_MS_API_KEY }}
6262
- name: Upload release
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v7
6464
with:
6565
retention-days: 7
6666
name: release

patches/puppeteer.patch

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/lib/cjs/puppeteer/getConfiguration.js b/lib/cjs/puppeteer/getConfiguration.js
2+
index 6d7809838cc1d5429b10553ad7a3aeff9b588c42..e3f152a349fa04eb2b105c4ec8c8c72aae20f4b7 100644
3+
--- a/lib/cjs/puppeteer/getConfiguration.js
4+
+++ b/lib/cjs/puppeteer/getConfiguration.js
5+
@@ -85,6 +85,7 @@ function getBrowserSetting(browser, configuration, defaultConfig = {}) {
6+
getBooleanEnvVar(`PUPPETEER_SKIP_${browserEnvName}_DOWNLOAD`) ??
7+
configuration[browser]?.skipDownload ??
8+
defaultConfig.skipDownload;
9+
+ console.log(browserSetting);
10+
return browserSetting;
11+
}
12+
/**

pnpm-lock.yaml

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ allowBuilds:
77
patchedDependencies:
88
lodash: patches/lodash.patch
99
lodash-es: patches/lodash-es.patch
10+
puppeteer: patches/puppeteer.patch

0 commit comments

Comments
 (0)