Skip to content

Commit

Permalink
Merge pull request #25 from curveball/update-to-kernel-2022-09-03
Browse files Browse the repository at this point in the history
Switch to using @curveball/kernel to enable Bun support
  • Loading branch information
evert authored Sep 3, 2022
2 parents 575cc4c + 8672dd0 commit 2732566
Show file tree
Hide file tree
Showing 9 changed files with 882 additions and 574 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
branches: [ main ]

jobs:
test:
name: Run tests
node-test:
name: Node.js tests

runs-on: ubuntu-latest

Expand All @@ -30,6 +30,19 @@ jobs:
- run: npm run build --if-present
- run: npm test

bun-test:
name: Bun tests

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Bun
uses: antongolub/action-setup-bun@v1
- run: bun install
- run: bun run build
- run: bun run mocha

lint:
name: Lint

Expand All @@ -42,4 +55,4 @@ jobs:
with:
node-version: 18.x
- run: npm ci
- run: npm run lint
- run: npm run lint
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ the middleware:


```typescript
import { Application } from '@curveball/core';
import { Application } from '@curveball/kernel';
import validator from '@curveball/validator';

const app = new Application();
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

0.10.0 (2022-09-03)
------------------

* Upgraded from `@curveball/core` to `@curveball/kernel`.


0.9.0 (2022-06-11)
------------------

Expand Down
Loading

0 comments on commit 2732566

Please sign in to comment.