From df69d72811ac88e6b743d1bc6d7d58faf8dfe71c Mon Sep 17 00:00:00 2001 From: stakbucks Date: Fri, 16 Aug 2024 19:50:00 +0900 Subject: [PATCH] test --- .github/workflows/preview_bottle.yaml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/preview_bottle.yaml b/.github/workflows/preview_bottle.yaml index 33096da..5edac84 100644 --- a/.github/workflows/preview_bottle.yaml +++ b/.github/workflows/preview_bottle.yaml @@ -53,16 +53,9 @@ jobs: - name: Check for changes in package A using turbo id: turbo_check run: | - pnpx turbo run test:e2e --filter=@bottlesteam/e2e... --dry-run=json > result.json - cat result.json - - name: Determine if A package has changes - id: determine_changes - run: | - if grep -q '"tasks": {}' result.json; then - echo "changed=false" >> $GITHUB_ENV - else - echo "changed=true" >> $GITHUB_ENV - fi + RESULT=$(pnpm exec turbo-ignore @bottlesteam/web build) + echo $RESULT + continue-on-error: true - name: Set CI status if: steps.turbo-check.outputs.changed != 'true'