diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e54310dc..f2c7b65a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -25,10 +25,10 @@ jobs: - name: Check formatting run: pnpm run format:check - name: Build - run: pnpm exec nx affected --target=build --parallel=3 + run: pnpm exec nx affected --target=build --parallel=1 - name: Lint - run: pnpm exec nx affected --target=lint --parallel=3 + run: pnpm exec nx affected --target=lint --parallel=1 - name: Test uses: GabrielBB/xvfb-action@v1 with: - run: pnpm exec nx affected --target=test --parallel=3 + run: pnpm exec nx affected --target=test --parallel=1 diff --git a/extension/package.json b/extension/package.json index 7f88990f..ff245d52 100644 --- a/extension/package.json +++ b/extension/package.json @@ -22,7 +22,7 @@ "test:app": "cross-env BABEL_ENV=test jest test/app", "test:chrome": "jest test/chrome", "test:electron": "pnpm run build:test:electron:fixture && jest test/electron", - "test": "pnpm run test:app && pnpm run build:extension && pnpm run test:chrome && pnpm run test:electron", + "test": "pnpm run test:app && pnpm run test:chrome && pnpm run test:electron", "build:test:electron:fixture": "webpack --config test/electron/fixture/webpack.config.js", "type-check": "tsc --noEmit" }, diff --git a/package.json b/package.json index 5c07afb0..49c98624 100644 --- a/package.json +++ b/package.json @@ -20,10 +20,10 @@ "scripts": { "format": "prettier --write .", "format:check": "prettier --check .", - "build:all": "nx run-many --target=build --all", - "lint:all": "nx run-many --target=lint --all", - "test:all": "nx run-many --target=test --all", - "clean:all": "nx run-many --target=clean --all", + "build:all": "nx run-many --target=build --all --parallel=1", + "lint:all": "nx run-many --target=lint --all --parallel=1", + "test:all": "nx run-many --target=test --all --parallel=1", + "clean:all": "nx run-many --target=clean --all --parallel=1", "release": "pnpm build:all && changeset publish" }, "workspaces": [