Fix SSR resolve.external being unconditionally applied in Vite 6+ #73
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: ci | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| e2e-tests: | |
| name: "E2E tests" | |
| strategy: | |
| fail-fast: false | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "23" | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.15.3 | |
| - name: Install project dependencies | |
| run: pnpm i | |
| - name: Build project | |
| run: pnpm run build | |
| - name: Run tests | |
| run: pnpm run test |