Skip to content

Commit 228b568

Browse files
committed
ci: let's see if it works without moving the directory
1 parent a2a7a3c commit 228b568

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
runs-on: ${{ matrix.os }}
4949
continue-on-error: ${{ matrix.os == 'windows-latest' }}
5050
env:
51-
# Sometimes the Linux runner can't verify Cypress in 30s
52-
CYPRESS_VERIFY_TIMEOUT: 60000
51+
CYPRESS_INSTALL_BINARY: 0
52+
CHROMEDRIVER_SKIP_DOWNLOAD: true
5353
steps:
5454
- uses: actions/checkout@v4
5555
- uses: pnpm/action-setup@v3
@@ -66,15 +66,13 @@ jobs:
6666
playground
6767
key: ${{ github.sha }}-${{ hashFiles('pnpm-lock.yaml') }}
6868
- name: Build the package on cache miss
69-
run: pnpm install && pnpm build && pnpm snapshot
70-
- name: Move playground
71-
run: echo "{}" > playground/package.json && mv playground ../playground
69+
run: pnpm install && pnpm build && pnpm snapshot && echo "{}" > playground/package.json
7270
- name: Install dependencies in playground
73-
working-directory: ../playground
71+
working-directory: ./playground
7472
run: pnpm install --no-frozen-lockfile -r
7573

7674
- name: Run build script in playground
77-
working-directory: ../playground
75+
working-directory: ./playground
7876
run: pnpm --filter "*" build
7977

8078
# test-vitest:

0 commit comments

Comments
 (0)