{"id":37350367,"url":"https://github.com/rstackjs/rstack-ecosystem-ci","last_synced_at":"2026-03-09T04:07:50.443Z","repository":{"id":321176473,"uuid":"1084199382","full_name":"rstackjs/rstack-ecosystem-ci","owner":"rstackjs","description":"Rstack Ecosystem CI","archived":false,"fork":false,"pushed_at":"2026-03-03T07:05:05.000Z","size":5050,"stargazers_count":6,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-03T07:08:37.374Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://ecosystem-ci.rstack.rs","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rstackjs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-10-27T11:07:54.000Z","updated_at":"2026-03-02T12:38:08.000Z","dependencies_parsed_at":"2026-02-09T05:03:18.753Z","dependency_job_id":null,"html_url":"https://github.com/rstackjs/rstack-ecosystem-ci","commit_stats":null,"previous_names":["rspack-contrib/rstack-ecosystem-ci","rstackjs/rstack-ecosystem-ci"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/rstackjs/rstack-ecosystem-ci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Frstack-ecosystem-ci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Frstack-ecosystem-ci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Frstack-ecosystem-ci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Frstack-ecosystem-ci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rstackjs","download_url":"https://codeload.github.com/rstackjs/rstack-ecosystem-ci/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Frstack-ecosystem-ci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30282745,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-16T04:01:48.959Z","updated_at":"2026-03-09T04:07:50.407Z","avatar_url":"https://github.com/rstackjs.png","language":"TypeScript","readme":"# rstack-ecosystem-ci\n\nThis repository provides a unified ecosystem CI harness for Rstack projects.\n\n## Via GitHub workflow\n\n### scheduled\n\nWorkflows are scheduled to run automatically every day\n\n### manually\n\n- open [workflow](../../actions/workflows/ecosystem-ci-selected.yml)\n- click 'Run workflow' button on top right of the list\n- select suite to run in dropdown\n- start workflow\n\n## Via CLI\n\n- clone this repo\n- run `pnpm i`\n- run `pnpm test --stack \u003cstack\u003e` to run every suite under the selected stack (`rsbuild`, `rspack`, `rstest`, `rslib`, `rsdoctor`)\n- run `pnpm test --stack rspack` to execute all Rspack suites (available stacks: `rsbuild`, `rspack`, `rstest`, `rslib`, `rsdoctor`)\n- run `pnpm test --stack rslib` to execute all Rslib suites\n- run `pnpm test --stack rsbuild plugins` to target a specific suite\n- or invoke `tsx ecosystem-ci.ts` directly for advanced commands such as `build`, `run-suites`, or `bisect`\n\nThe version selection flags apply to the chosen stack:\n\n- `--tag v2.8.0-beta.1`, `--branch some-branch` or `--commit abcd1234` pick the stack source to build\n- `--release 2.7.13` skips the local build and pulls the stack from the registry instead\n\nThe repositories are checked out into `workspace` subdirectory as shallow clones\n\n### Cheat sheet\n\n- `pnpm test --stack rspack --release nightly \u003csuite\u003e`: run a nightly release of the selected stack\n- `pnpm test --stack rsbuild --branch main --suite-branch update-rsbuild \u003csuite\u003e`: use `update-rsbuild` branch for the suite to test `main`\n- `pnpm test --stack rspack modernjs` (rspack suites include modernjs, rspress, rsbuild, rslib, rstest, rsdoctor, examples, devserver, nuxt, plugin, lynx-stack, _selftest)\n\n# How to add a new integration test\n\n- check out the existing suites under `tests/\u003cstack\u003e` and add one yourself. Thanks to the shared utilities it is really easy\n- once you are confidente the suite works, add it to the lists of suites in the [workflows](../../actions/)\n\n\u003e the current utilities focus on pnpm based projects. Consider switching to pnpm or contribute utilities for other pms\n\n# Reporting results\n\n### On your own server\n\n- Go to `Server settings \u003e Integrations \u003e Webhooks` and click `New Webhook`\n- Give it a name, icon and a channel to post to\n- copy the webhook url\n- get in touch with admins of this repo so they can add the webhook\n\n## Credits\n\nThanks to:\n\n- [vitejs/vite-ecosystem-ci](https://github.com/vitejs/vite-ecosystem-ci)\n- [vuejs/ecosystem-ci](https://github.com/vuejs/ecosystem-ci)\n\nwhich inspired the development of this project.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frstackjs%2Frstack-ecosystem-ci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frstackjs%2Frstack-ecosystem-ci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frstackjs%2Frstack-ecosystem-ci/lists"}