Add test framework, unit tests, and CI validation workflow #3

Merged
jdb merged 6 commits from feat/test-framework into main 2026-05-05 20:07:13 +00:00
Showing only changes of commit ba52c2083a - Show all commits
+1 -6
View File
@@ -8,16 +8,11 @@ on:
jobs:
test:
runs-on: ubuntu-latest
runs-on: bun
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
run: curl -fsSL https://bun.sh/install | bash
- name: Add Bun to PATH
run: echo "$HOME/.bun/bin" >> $GITHUB_PATH
- name: Install dependencies
jdb marked this conversation as resolved
Review

If we switch to the bun runner as I asked in my previous review comment, we will not need to install bun. It comes packaged in that runner.

If we switch to the `bun` runner as I asked in my previous review comment, we will not need to install bun. It comes packaged in that runner.
run: bun install