Skip to content

Commit 06e9d46

Browse files
committed
ci: use single quotes everywhere to avoid different behavior between shells
1 parent 639413f commit 06e9d46

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)