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' }}