feat: add CI workflow for linting and building with Bun - #21
Open
staciax wants to merge 2 commits into
Open
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR introduces a new GitHub Actions workflow to set up Bun, install dependencies, run linting, and build the project, and pins the Bun version.
- Add CI workflow (
.github/workflows/ci.yaml) for Bun setup, linting, and build - Pin Bun version to 1.2.17 in
.bun-version
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/ci.yaml | Create CI job to checkout, setup Bun, install, lint, and build |
| .bun-version | Specify Bun version (1.2.17) for the workflow |
Comments suppressed due to low confidence (3)
.github/workflows/ci.yaml:10
- The workflow is configured to trigger pull requests only against the
masterbranch, but the repository’s default branch appears to bemain. Update thebranchessetting tomainso CI runs on PRs.
- master
.github/workflows/ci.yaml:34
- The test step is commented out, so tests won’t run in CI. Consider enabling this step or removing it if tests aren’t ready to ensure test coverage is validated on every run.
# - name: Run tests
.github/workflows/ci.yaml:17
- [nitpick] The job ID
lintalso runs build steps, which may be misleading. Consider renaming it tocior splitting lint and build into separate jobs for clearer intent.
lint:
staciax
force-pushed
the
dev
branch
2 times, most recently
from
July 2, 2025 12:43
bebb897 to
db0bbc4
Compare
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.
No description provided.