test(e2e): harden cypress for CI cold-start + hydration timing #17
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| jobs: | |
| test: | |
| timeout-minutes: 10 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| # Pinned 22 (see cr.yml): `better-sqlite3` install hangs on newer `lts/*`. | |
| node-version: [22] | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| # os: [ubuntu-latest, macos-latest] | |
| fail-fast: false | |
| steps: | |
| - name: Set git to use LF | |
| run: | | |
| git config --global core.autocrlf false | |
| git config --global core.eol lf | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Setup | |
| run: npm i -g @antfu/ni | |
| - name: Install | |
| run: nci | |
| env: | |
| CYPRESS_INSTALL_BINARY: 0 | |
| - name: Build | |
| run: nr build | |
| - name: Test | |
| run: nr test | |
| cypress: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: Setup | |
| run: npm i -g @antfu/ni | |
| - name: Install | |
| run: nci | |
| - name: Build | |
| run: nr build | |
| - name: Hack Cypress | |
| run: cp pnpm-lock.yaml package-lock.json | |
| - name: Cypress | |
| uses: cypress-io/github-action@v7 | |
| with: | |
| install-command: echo | |
| build: nr build | |
| start: nr cy:fixture |