Set up CI and git hooks for quality assurance #9
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
iterative-works/support#9
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Set up continuous integration (GitHub Actions) and local git hooks to ensure code quality and catch issues early.
Motivation
Currently there's no automated verification that code compiles and tests pass. We need:
Current State
Requirements
GitHub Actions CI
Triggers:
mainmainJobs:
Compile - Verify all modules compile
sbt compile(JVM)sbt <js-modules>/compile(JS)Test - Run test suites
sbt test(unit tests)Formatting/Linting (if applicable)
Considerations:
Git Hooks
Pre-commit:
Pre-push:
Implementation options:
.git/hooks/Research Questions
Deliverables
.github/workflows/ci.yml- GitHub Actions workflowChecklist