File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ build_docker_ci:
44 docker build -f docker/Dockerfile_ci -t elasticvue-ci .
55
66ci : build_docker_ci
7+ cat /proc/cpuinfo
78 docker run --rm elasticvue-ci yarn lint
89 docker run --rm elasticvue-ci yarn tsc
910 docker run --rm elasticvue-ci yarn test:unit
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default defineConfig({
1818 /* Retry on CI only */
1919 retries : process . env . CI ? 2 : 0 ,
2020 /* Opt out of parallel tests on CI. */
21- workers : process . env . CI ? 1 : 16 ,
21+ workers : process . env . CI ? 2 : 16 ,
2222 /* Reporter to use. See https://playwright.dev/docs/test-reporters */
2323 reporter : [ [ 'html' , { open : 'never' } ] ] ,
2424 /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
You can’t perform that action at this time.
0 commit comments