@@ -49,13 +49,13 @@ jobs:
4949          node-version : [18, 20, 22] 
5050          os : [ubuntu-latest, windows-latest, macos-latest] 
5151          verification-script :
52-             - pnpm --filter "\ !*typescript*"  build 
53-             - pnpm --filter " *typescript*"  build 
54-             - pnpm --filter " *vitest*"  --filter "\ !*bare*"  test:unit 
55-             - pnpm --filter " *eslint*"  lint --no-fix --max-warnings=0 
56-             - pnpm --filter " *prettier*"  format --write --check 
52+             - pnpm --filter ' !*typescript*'  build 
53+             - pnpm --filter ' *typescript*'  build 
54+             - pnpm --filter ' *vitest*'  --filter ' !*bare*'  test:unit 
55+             - pnpm --filter ' *eslint*'  lint --no-fix --max-warnings=0 
56+             - pnpm --filter ' *prettier*'  format --write --check 
5757            #  FIXME: it's failing now
58-             #  - pnpm --filter " *with-tests*"  test:unit
58+             #  - pnpm --filter ' *with-tests*'  test:unit
5959      runs-on : ${{ matrix.os }} 
6060      continue-on-error : ${{ matrix.os == 'windows-latest' }} 
6161      env :
@@ -163,11 +163,11 @@ jobs:
163163
164164      - name : Run build script 
165165        working-directory : ./playground 
166-         run : pnpm --filter " *${{ matrix.e2e-framework }}*"  build 
166+         run : pnpm --filter ' *${{ matrix.e2e-framework }}*'  build 
167167
168168      - name : Run e2e test script 
169169        working-directory : ./playground 
170-         run : pnpm --filter " *${{ matrix.e2e-framework }}*"  --workspace-concurrency 1 test:e2e 
170+         run : pnpm --filter ' *${{ matrix.e2e-framework }}*'  --workspace-concurrency 1 test:e2e 
171171
172172      - name : Cypress component testing for projects without Vitest 
173173        if : ${{ contains(matrix.e2e-framework, 'cypress') }} 
0 commit comments