Skip to content

Commit a8b5cbe

Browse files
committed
.
1 parent f2eefdb commit a8b5cbe

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
test:
1010
timeout-minutes: 30
1111
strategy:
12-
fail-fast: true
12+
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest, windows-latest]
1515
runs-on: ${{ matrix.os }}
@@ -38,6 +38,6 @@ jobs:
3838
- uses: actions/upload-artifact@v4
3939
if: always()
4040
with:
41-
name: playwright-report
41+
name: playwright-report-${{ matrix.os }}
4242
path: ./**/playwright-report
4343
retention-days: 1

packages/cloudflare/src/cli/build/patches/plugins/wrangler-external.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export function setWranglerExternal() {
2828
const namespace = "wrangler-externals-plugin";
2929

3030
build.onResolve({ filter: /(\.bin|\.wasm\?module)$/ }, ({ path, importer }) => {
31-
console.warn("importer, path, new", importer, path, normalizePath(resolve(dirname(importer), path)));
3231
return {
3332
path: normalizePath(resolve(dirname(importer), path)),
3433
namespace,
@@ -37,7 +36,6 @@ export function setWranglerExternal() {
3736
});
3837

3938
build.onLoad({ filter: /.*/, namespace }, async ({ path }) => {
40-
console.warn("onLoad path", path);
4139
return {
4240
contents: `export * from '${path}';`,
4341
};

0 commit comments

Comments
 (0)