Merge pull request #20 from JasonOA888/feat/github-actions-ci

feat(ci): add GitHub Actions CI workflow
This commit is contained in:
Paul Bakaus
2026-03-10 14:07:55 -07:00
committed by GitHub
+36
View File
@@ -0,0 +1,36 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run tests
run: bun test
- name: Build
run: bun run build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: impeccable-dist
path: dist/
retention-days: 7