From fb852cfe686b2e6ae840c4acc43b414a90cb7640 Mon Sep 17 00:00:00 2001 From: Chris Rybicki Date: Tue, 3 Sep 2024 16:47:51 -0400 Subject: [PATCH] chore: fix sdk-spec-test.yml workflow (#7072) --- .github/workflows/sdk-spec-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sdk-spec-test.yml b/.github/workflows/sdk-spec-test.yml index c75a99f7bd2..95a20f1e4b5 100644 --- a/.github/workflows/sdk-spec-test.yml +++ b/.github/workflows/sdk-spec-test.yml @@ -213,11 +213,11 @@ jobs: # COMPATIBILITY="-t @winglang/compatibility-spy" //TODO: will be handled in a following PR else WING_CLI=$(realpath localwing/node_modules/.bin/wing) - COMPATIBILITY="-t ../../../../localwing/node_modules/@winglang/compatibility-spy/lib" + COMPATIBILITY="-t ../../../localwing/node_modules/@winglang/compatibility-spy/lib" echo $COMPATIBILITY fi cd ${{ matrix.test.directory }} - $WING_CLI test --snapshots=deploy -t ${{ matrix.target }} -p ${{ (matrix.target == 'tf-azure' && 2 ) || (matrix.target == 'tf-gcp' && 5) || 10 }} --retry 3 $COMPATIBILITY *.test.w -o ../../../../out/${{ matrix.test.name }}-${{ matrix.target }}.json + $WING_CLI test --snapshots=deploy -t ${{ matrix.target }} -p ${{ (matrix.target == 'tf-azure' && 2 ) || (matrix.target == 'tf-gcp' && 5) || 10 }} --retry 3 $COMPATIBILITY *.test.w -o ../../../out/${{ matrix.test.name }}-${{ matrix.target }}.json - name: Upload Artifacts if: ${{ env.LOCAL_BUILD == 'true' }}