ci: adopt shared reusable workflows - #8
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Migrates this library’s CI to the org-wide reusable node-lib-ci@v1 workflow, keeping only repo-specific build-output integrity, bundle-size budget, and MinIO Testcontainers E2E locally, and adds weekly Dependabot updates.
Changes:
- Switch
.github/workflows/ci.ymlto call the shared reusable CI workflow and add a visibility-gated reusablesecuritydependency-review gate. - Keep local jobs for build integrity + bundle-size checks and MinIO Testcontainers E2E.
- Add
.github/dependabot.ymlfor weekly npm + GitHub Actions updates; update AGENTS docs for post-merge mutation behavior.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| AGENTS.md | Updates mutation-testing documentation to match the new post-merge CI behavior. |
| .github/workflows/ci.yml | Replaces most local CI jobs with an org reusable workflow; retains local verify + e2e and adds reusable security gate. |
| .github/dependabot.yml | Introduces weekly Dependabot update configuration for npm and GitHub Actions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Member
Author
| Not applied: false positive. tsup here runs with `format: ['esm','cjs']` + `dts: true`, which emits a per-format declaration for the CJS build (`index.d.cts`) alongside `index.d.ts`. Empirical proof: the **Verify build + size** job passed green on this exact commit (228b028) with the `d.cts` extension already in the integrity loop — if the file were missing the job would have exited 1. The stricter gate protects CJS consumers (`require`), so it stays. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Migrates CI to the org-wide
node-lib-ci@v1reusable (lint/typecheck/unit test:cov:all/mutation) + visibility-gatedsecuritydependency-review (replaces the local dependency-review job). Build-output integrity + bundle-size budget and the MinIO Testcontainers e2e stay local. Mutation runs post-merge onmain(source-gated, incremental). Adds adependabot.yml(weekly). codeql/scorecard/osv/release untouched.