From db55ed118846eee360dffa8a150a1f435899f62f Mon Sep 17 00:00:00 2001 From: Tim Shamilov Date: Sat, 2 Dec 2023 22:33:37 -0500 Subject: [PATCH] fix parallelism --- .github/workflows/tests-ci.yml | 6 +++--- package.json | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests-ci.yml b/.github/workflows/tests-ci.yml index 19e1a1df7..5bf58ae88 100644 --- a/.github/workflows/tests-ci.yml +++ b/.github/workflows/tests-ci.yml @@ -60,7 +60,7 @@ jobs: - name: Install dependencies run: npm ci - - name: Build all workspace packages (type check) + - name: Build all workspace packages run: npm run build - name: Run linter for all packages @@ -130,8 +130,8 @@ jobs: path: ~/Library/Caches/ms-playwright key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }} - - name: Build browser bundles for matrix ${{ matrix.group }}) - run: npm run ci:build:browser:matrix:${{ matrix.group }} + - name: Build all workspace packages + run: npm run build - name: Run dwn-server (background) run: | diff --git a/package.json b/package.json index 74e07440d..7ebd26b06 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,6 @@ "test:browser": "npm run test:browser --ws", "test:node": "npm run test:node --ws", "dwn-server":"node node_modules/@web5/dwn-server/dist/esm/src/main.js || true", - "ci:build:browser:matrix:a": "npm run build:browser --workspace packages/agent", - "ci:build:browser:matrix:b": "npm run build:browser --workspace packages/api --workspace packages/common --workspace packages/credentials --workspace packages/crypto --workspace packages/dids --workspace packages/identity-agent --workspace packages/proxy-agent --workspace packages/user-agent", "ci:test:browser:matrix:a": "npm run test:browser --workspace packages/agent", "ci:test:browser:matrix:b": "npm run test:browser --workspace packages/api --workspace packages/common --workspace packages/credentials --workspace packages/crypto --workspace packages/dids --workspace packages/identity-agent --workspace packages/proxy-agent --workspace packages/user-agent" },