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
2 changes: 1 addition & 1 deletion packages/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn constraints --fix && yarn lint:dependencies",
"lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.html' '!**/CHANGELOG.old.md' '**/*.yml' '!.yarnrc.yml' '!merged-packages/**' --ignore-path ../../.gitignore --log-level error",
"publish:preview": "yarn npm publish --tag preview",
"postinstall": "yarn playwright install chromium",
"postinstall": "../../scripts/playwright-install.sh",
"start": "./scripts/start.sh",
"test": "vitest run --config vitest.config.ts",
"test:build": "tsx ./test/build/build-tests.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/omnium-gatherum/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn constraints --fix && yarn lint:dependencies",
"lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.html' '!**/CHANGELOG.old.md' '**/*.yml' '!.yarnrc.yml' '!merged-packages/**' --ignore-path ../../.gitignore --log-level error",
"publish:preview": "yarn npm publish --tag preview",
"postinstall": "yarn playwright install chromium",
"postinstall": "../../scripts/playwright-install.sh",
"start": "./scripts/start.sh",
"test": "vitest run --config vitest.config.ts",
"test:build": "tsx ./test/build/build-tests.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/streams/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn constraints --fix && yarn lint:dependencies",
"lint:misc": "prettier --no-error-on-unmatched-pattern '**/*.json' '**/*.md' '**/*.html' '!**/CHANGELOG.old.md' '**/*.yml' '!.yarnrc.yml' '!merged-packages/**' --ignore-path ../../.gitignore --log-level error",
"publish:preview": "yarn npm publish --tag preview",
"postinstall": "yarn playwright install chromium",
"postinstall": "../../scripts/playwright-install.sh",
"test": "vitest run --config vitest.config.ts",
"test:clean": "yarn test --no-cache --coverage.clean",
"test:dev": "yarn test --mode development --reporter dot",
Expand Down
9 changes: 9 additions & 0 deletions scripts/playwright-install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

# Skip in Dependabot PRs (native builds aren't needed and may fail)
if [ "$GITHUB_ACTOR" = "dependabot[bot]" ]; then
echo "⏭️ Skipping native rebuild in Dependabot PR"
exit 0
fi

yarn playwright install chromium
6 changes: 6 additions & 0 deletions scripts/rebuild-native.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
# This checks if artifacts already exist to avoid unnecessary rebuilds.
# Pass --force or -f to rebuild even if build artifacts already exist.

# Skip in Dependabot PRs (native builds aren't needed and may fail)
if [ "$GITHUB_ACTOR" = "dependabot[bot]" ]; then
echo "⏭️ Skipping native rebuild in Dependabot PR"
exit 0
fi

# Track if any builds fail
BUILD_FAILED=0

Expand Down
Loading