## Current situation - [examples/wait-on-vite](https://github.com/cypress-io/github-action/tree/master/examples/wait-on-vite) and - [examples/v9/wait-on-vite](https://github.com/cypress-io/github-action/tree/master/examples/v9/wait-on-vite) are configured to use https://github.com/cypress-io/github-action/blob/821aeac6ccc722db3d43469e398f88e83a5fd05e/examples/wait-on-vite/package.json#L16 ## Suggested change Upgrade to a non-beta [vite](https://www.npmjs.com/package/vite) version for the wait-on-vite examples. - Update [examples/wait-on-vite](https://github.com/cypress-io/github-action/tree/master/examples/wait-on-vite) to use vite@4. ([Cypress 12.4.0](https://docs.cypress.io/guides/references/changelog#12-4-0) added support for Vite 4 in Component Testing, so although wait-on-vite uses e2e testing, it would bring it in line with the Vite 4 version from PR https://github.com/cypress-io/github-action/pull/748 for component testing.) - Update [examples/v9/wait-on-vite](https://github.com/cypress-io/github-action/tree/master/examples/v9/wait-on-vite) to use vite@3 Use ```bash npm create vite ``` to create a default vite project for the corresponding version.
Current situation
are configured to use
github-action/examples/wait-on-vite/package.json
Line 16 in 821aeac
Suggested change
Upgrade to a non-beta vite version for the wait-on-vite examples.
Update examples/wait-on-vite to use vite@4. (Cypress 12.4.0 added support for Vite 4 in Component Testing, so although wait-on-vite uses e2e testing, it would bring it in line with the Vite 4 version from PR Replace component test with React and Vite 4 #748 for component testing.)
Update examples/v9/wait-on-vite to use vite@3
Use
to create a default vite project for the corresponding version.