Update CI workflows for development/master branching model#87
Merged
erdembircan merged 3 commits intodevelopmentfrom Mar 4, 2026
Merged
Update CI workflows for development/master branching model#87erdembircan merged 3 commits intodevelopmentfrom
erdembircan merged 3 commits intodevelopmentfrom
Conversation
erdembircan
commented
Mar 4, 2026
erdembircan
commented
Mar 4, 2026
Split the single build.yml with conditionals into three focused workflow files for better maintainability: - ci.yml: PR to development (lint, test, typecheck, build) - ci-master.yml: PR to master (build only) - release.yml: push to master (lint, test, typecheck, build, commit) Also removed the explicit `add: build/` from EndBug/add-and-commit as the action defaults to adding all changed files.
Owner
Author
|
[agent] Addressed both review comments:
|
erdembircan
commented
Mar 4, 2026
Owner
Author
|
[agent] Addressed the review feedback: updated |
erdembircan
added a commit
that referenced
this pull request
Mar 4, 2026
* Track docs folder in version control (#85) Remove docs/ from .gitignore so that design documents and flowcharts are tracked in version control and available across clones and worktrees. Closes #81 * Fix high-severity ReDoS vulnerability in minimatch dependency (#86) * Remove bundle mapping (#84) Remove sourcemap generation from esbuild config. Closes #78. * track `build` directory (#83) Remove `build/` from `.gitignore` so the build output is tracked in git. Add compiled build artifacts (`build/index.js`, `build/index.js.map`). Closes #82 * Update CI workflows for development/master branching model (#87) * [CI]: update workflows for development/master branching model * [FIX]: split CI workflow into separate files and remove explicit add Split the single build.yml with conditionals into three focused workflow files for better maintainability: - ci.yml: PR to development (lint, test, typecheck, build) - ci-master.yml: PR to master (build only) - release.yml: push to master (lint, test, typecheck, build, commit) Also removed the explicit `add: build/` from EndBug/add-and-commit as the action defaults to adding all changed files. * [FIX]: add lint, test, and typecheck checks to master PR workflow * Release 1.0.0 (#89) Bump version from 1.0.0-dev to 1.0.0 in package.json and package-lock.json.\n\nCloses #88
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.
[agent] Closes #80
Changes
Updates
.github/workflows/build.ymlto support three CI scenarios:development-- Runs lint, test, typecheck, and build as CI checks (no commit).master-- Runs build only (lint/test/typecheck are skipped via conditional) to catch build issues before merging.master-- Runs lint, test, typecheck, and build, then commits thebuild/output back to master usingEndBug/add-and-commit@v9with message[BUILD]: update build output.How it works
ifcondition that skips them when the PR targetsmaster.if: always() && !failure() && !cancelled()so it runs even when its dependencies (lint/test/typecheck) are skipped (PR to master), but still respects failures (PR to development / push to master).