ci: add CI, update-dist, and dependabot auto-merge workflows#59
Merged
joeltjames merged 2 commits intomainfrom Feb 26, 2026
Merged
ci: add CI, update-dist, and dependabot auto-merge workflows#59joeltjames merged 2 commits intomainfrom
joeltjames merged 2 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds continuous integration infrastructure to the repository by introducing two new workflows and updating the release workflow. The changes automate testing, building, and dependency management for this GitHub Action that syncs pull requests to Asana tasks.
Changes:
- Added a CI workflow that runs tests and builds on pull requests, with automatic approval and merging of dependabot PRs after successful CI
- Added an update-dist workflow that automatically rebuilds and commits the dist/ directory on every push to main
- Removed dist build steps from the release workflow since they're now handled by the update-dist workflow
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 6 comments.
| File | Description |
|---|---|
| .github/workflows/ci.yml | New CI workflow that runs tests/build on PRs and auto-merges dependabot PRs |
| .github/workflows/update-dist.yml | New workflow to automatically rebuild and commit dist/ on pushes to main |
| .github/workflows/release.yml | Removed dist build steps (now handled by update-dist workflow) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
d0764c5 to
b995fe7
Compare
- ci.yml: runs tests and build on PRs; auto-merges dependabot PRs after build passes - update-dist.yml: commits built dist/ to main after each merge, serialized via concurrency group - release.yml: remove redundant build step now that update-dist keeps dist current Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
b995fe7 to
8120c91
Compare
fake the timer...
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.
Summary
ci.ymlworkflow that runs tests and build on pull requests, and auto-approves/merges dependabot PRs after CI passesupdate-dist.ymlworkflow that rebuilds and commitsdist/on every push to mainrelease.ymlnow that it's handled byupdate-dist.yml; bumpactions/github-scriptto v8@actions/corev3,@actions/githubv9, eslint v10, msw, prettier, rollup, typescript, vue)