@@ -48,10 +48,10 @@ jobs:
4848 run : npm ci --no-audit --no-fund
4949
5050 - name : Run Linting
51- run : npx turbo lint --filter=$TURBO_REF_FILTER
51+ run : npx turbo lint --filter="...[ $TURBO_REF_FILTER]"
5252
5353 - name : Run Prettier
54- run : npx turbo prettier --filter=$TURBO_REF_FILTER
54+ run : npx turbo prettier --filter="...[ $TURBO_REF_FILTER]"
5555
5656 unit-tests :
5757 name : Tests on ${{ matrix.os }}
@@ -94,16 +94,16 @@ jobs:
9494
9595 - name : Run Unit Tests (Windows)
9696 if : matrix.os == 'windows-latest'
97- run : npx turbo test:unit --filter=$env:TURBO_REF_FILTER -- --coverage
97+ run : npx turbo test:unit --filter="...[ $env:TURBO_REF_FILTER]" -- --coverage
9898
9999 - name : Run Unit Tests (Ubuntu)
100100 if : matrix.os == 'ubuntu-latest'
101- run : npx turbo test:unit --filter=$TURBO_REF_FILTER -- --coverage
101+ run : npx turbo test:unit --filter="...[ $TURBO_REF_FILTER]" -- --coverage
102102
103103 - name : Run Storybook Tests (Windows)
104104 if : matrix.os == 'windows-latest'
105- run : npx turbo test:storybook --filter=$env:TURBO_REF_FILTER
105+ run : npx turbo test:storybook --filter="...[ $env:TURBO_REF_FILTER]"
106106
107107 - name : Run Storybook Tests (Ubuntu)
108108 if : matrix.os == 'ubuntu-latest'
109- run : npx turbo test:storybook --filter=$TURBO_REF_FILTER
109+ run : npx turbo test:storybook --filter="...[ $TURBO_REF_FILTER]"
0 commit comments