Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vitejs/vite-ecosystem-ci
Vite Ecosystem CI
https://github.com/vitejs/vite-ecosystem-ci
Last synced: about 1 month ago
JSON representation
Vite Ecosystem CI
- Host: GitHub
- URL: https://github.com/vitejs/vite-ecosystem-ci
- Owner: vitejs
- License: mit
- Created: 2022-01-06T13:07:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T09:58:18.000Z (6 months ago)
- Last Synced: 2024-05-01T11:39:48.740Z (6 months ago)
- Language: TypeScript
- Size: 570 KB
- Stars: 219
- Watchers: 8
- Forks: 50
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vite-ecosystem-ci
This repository is used to run integration tests for vite ecosystem projects
## via github workflow
### scheduled
Workflows are scheduled to run automatically every Monday, Wednesday and Friday
### manually
- open [workflow](../../actions/workflows/ecosystem-ci-selected.yml)
- click 'Run workflow' button on top right of the list
- select suite to run in dropdown
- start workflow## via shell script
- clone this repo
- run `pnpm i`
- run `pnpm test` to run all suites
- or `pnpm test ` to select a suite
- or `tsx ecosystem-ci.ts`You can pass `--tag v2.8.0-beta.1`, `--branch somebranch` or `--commit abcd1234` option to select a specific vite version to build.
If you pass `--release 2.7.13`, vite build will be skipped and vite is fetched from the registry insteadThe repositories are checked out into `workspace` subdirectory as shallow clones
## via comment on PR
- comment `/ecosystem-ci run` on a PR
- or `/ecosystem-ci run ` to select a suiteUsers with triage permission to vitejs/vite repository can only use this.
See [docs/pr-comment-setup.md](./docs/pr-comment-setup.md) for how to setup this feature.
# how to add a new integration test
- check out the existing [tests](./tests) and add one yourself. Thanks to some utilities it is really easy
- once you are confident the suite works, add it to the lists of suites in the [workflows](../../actions/)# reporting results
## Discord
Results are posted automatically to `#ecosystem-ci` on [vite discord](https://chat.vitejs.dev/)
### on your own server
- Go to `Server settings > Integrations > Webhooks` and click `New Webhook`
- Give it a name, icon and a channel to post to
- copy the webhook url
- get in touch with admins of this repo so they can add the webhook#### how to add a discord webhook here
- Go to `/settings/secrets/actions` and click on `New repository secret`
- set `Name` as `DISCORD_WEBHOOK_URL`
- paste the discord webhook url you copied from above into `Value`
- Click `Add secret`