Skip to content
Snippets Groups Projects
Commit e29349a5 authored by Cheng Shao's avatar Cheng Shao
Browse files

ci: cap playwright workers to 8

parent 91eb47cd
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ curl -f -L --retry 5 https://github.com/haskell-wasm/playwright/archive/refs/hea ...@@ -18,7 +18,7 @@ curl -f -L --retry 5 https://github.com/haskell-wasm/playwright/archive/refs/hea
cd examples/todomvc cd examples/todomvc
npm install npm install
npx playwright install --with-deps npx playwright install --with-deps
npx playwright test --workers=$CPUS npx playwright test --workers=$(($CPUS > 8 ? 8 : $CPUS))
popd popd
popd popd
popd popd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment