Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 7 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 24
- uses: oven-sh/setup-bun@v2

- run: npm ci
- run: bun install --frozen-lockfile

- run: npm run build
- run: bun run build

- run: npm run typecheck
- run: bun run typecheck

test:
name: Tests
Expand All @@ -30,14 +28,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 24
- uses: oven-sh/setup-bun@v2

- run: npm ci
- run: bun install --frozen-lockfile

- name: Run tests
env:
UPSTASH_EMAIL: ${{ secrets.UPSTASH_EMAIL }}
UPSTASH_API_KEY: ${{ secrets.UPSTASH_API_KEY }}
run: npm test
run: bun run test
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: oven-sh/setup-bun@v2

- uses: actions/setup-node@v4
with:
node-version: 24
registry-url: https://registry.npmjs.org

- run: npm ci
- run: bun install --frozen-lockfile

- run: bun run build

- name: Publish release candidate
if: github.event.release.prerelease
Expand Down
Loading
Loading