File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ concurrency:
1111 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1212 cancel-in-progress : true
1313
14- env :
15- PLAYWRIGHT_BROWSERS_PATH : 0
16-
1714jobs :
1815 main :
1916 runs-on : ubuntu-latest
5350 run : npx cypress install
5451
5552 - name : Install Playwright browsers
56- run : pnpm exec playwright install chromium
53+ run : pnpm --filter @module-federation/devtools exec playwright install chromium
5754
5855 - name : Build shared packages
5956 run : pnpm run build:pkg
Original file line number Diff line number Diff line change 1717 "build:lib" : " rm -rf dist && modern-module build -c modern.lib.config.ts" ,
1818 "release" : " npm publish --tag canary" ,
1919 "test" : " vitest run" ,
20- "test:e2e" : " E2ETEST=true pnpm build && playwright test" ,
21- "test:e2e:ui" : " E2ETEST=true pnpm build && playwright test --ui" ,
20+ "test:e2e" : " node ../../scripts/ensure-playwright.js && E2ETEST=true pnpm build && playwright test" ,
21+ "test:e2e:ui" : " node ../../scripts/ensure-playwright.js && E2ETEST=true pnpm build && playwright test --ui" ,
2222 "start" : " modern-app start" ,
2323 "serve" : " modern-app serve" ,
2424 "postinstall" : " bash install-deps.bash" ,
Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://turbo.build/schema.json" ,
3+ "globalPassThroughEnv" : [
4+ " NEXT_PRIVATE_LOCAL_WEBPACK" ,
5+ " PLAYWRIGHT_BROWSERS_PATH"
6+ ],
37 "tasks" : {
48 "build" : {
59 "dependsOn" : [" ^build" ],
You can’t perform that action at this time.
0 commit comments