From 55bc9462e72ca829e9bdbe9594aa522cbf4f0260 Mon Sep 17 00:00:00 2001 From: Yaniv Davidi Date: Sun, 29 Aug 2021 13:10:41 +0300 Subject: [PATCH 1/3] chore: speed up lint action --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2c9d60566d..0eacabf9ca 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -33,6 +33,6 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' run: | npm install --only=dev --ignore-scripts - npx lerna bootstrap --no-ci --ignore-scripts -- --only=dev + npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' --ignore-scripts -- --only=dev - name: Lint run: npm run lint From 707449b2d4a118dfa44a257e5fc566e41b8e24b0 Mon Sep 17 00:00:00 2001 From: Yaniv Davidi Date: Sun, 29 Aug 2021 13:11:54 +0300 Subject: [PATCH 2/3] chore: speed up browser unit tests --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 5504e8528a..c5846b9bc0 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -146,7 +146,7 @@ jobs: - name: Install Root Dependencies run: npm install --ignore-scripts - name: Bootstrap Dependencies - run: npx lerna bootstrap --no-ci + run: npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' - name: Unit tests run: npm run test:browser - name: Report Coverage From 15741f2a249c65deb3ad0836db695d113dcbfcda Mon Sep 17 00:00:00 2001 From: Yaniv Davidi Date: Sun, 29 Aug 2021 13:28:38 +0300 Subject: [PATCH 3/3] Revert "chore: speed up browser unit tests" This reverts commit 707449b2d4a118dfa44a257e5fc566e41b8e24b0. --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index c5846b9bc0..5504e8528a 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -146,7 +146,7 @@ jobs: - name: Install Root Dependencies run: npm install --ignore-scripts - name: Bootstrap Dependencies - run: npx lerna bootstrap --no-ci --hoist --nohoist='zone.js' + run: npx lerna bootstrap --no-ci - name: Unit tests run: npm run test:browser - name: Report Coverage