From 0372bf8e5063e88eefd7c459932bbd543e21dd0b Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 2 Oct 2023 21:52:17 +0200 Subject: [PATCH] Switched `yarn workspace` to `yarn nx run ...` - this switches to NX for more command-execution, which helps in the future because we can configure dependent tasks that are also cacheable --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7368f80c0..82277a4e08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -515,7 +515,7 @@ jobs: if: steps.playwright-cache.outputs.cache-hit == 'true' run: npx playwright install-deps - - run: yarn workspace @tryghost/admin-x-settings run test:e2e + - run: yarn nx run @tryghost/admin-x-settings:test:e2e - name: Upload test results if: always() @@ -568,7 +568,7 @@ jobs: if: steps.playwright-cache.outputs.cache-hit == 'true' run: npx playwright install-deps - - run: yarn workspace @tryghost/comments-ui run test + - run: yarn nx run @tryghost/comments-ui:test - name: Upload test results if: always() @@ -621,7 +621,7 @@ jobs: if: steps.playwright-cache.outputs.cache-hit == 'true' run: npx playwright install-deps - - run: yarn workspace @tryghost/signup-form run test:e2e + - run: yarn nx run @tryghost/signup-form:test:e2e - name: Upload test results if: always()