Skip to content

Commit

Permalink
Bun support (#80)
Browse files Browse the repository at this point in the history
* introduce CliCoreBase.ts to remove all Node repl dependencies, allowing future REPL to be built without using Node REPL. Small change to stringify so that Timer objects are recognized in Bun. Add couple Bun detectors in tests to work around Jest specialties that are not availavle in Bun. Add github actions so that all tests run on Bun as well as node.

* fix bun:run script

* make workaround for bug in pulsar-flex. Issue submitted: ayeo-flex-org/pulsar-flex#90
  • Loading branch information
geoffhendrey committed Sep 27, 2024
1 parent 537da54 commit 7f5db56
Show file tree
Hide file tree
Showing 14 changed files with 864 additions and 1,339 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Jest Tests
name: Run Jest Tests on Node.js

on:
push:
Expand Down
42 changes: 42 additions & 0 deletions .github/workflows/test_bun.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Run Jest Tests on Bun.js

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test-bun:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Apache Pulsar
uses: reugn/github-action-pulsar@v1

- name: Install Bun
run: |
curl https://bun.sh/install | bash
echo "$HOME/.bun/bin" >> $GITHUB_PATH
- name: Verify Bun Installation
run: bun --version

- name: Install dependencies with Bun
run: bun install

- name: Run Bun tests
run: bun run test:bun

- name: Upload Bun test logs on failure
if: failure()
uses: actions/upload-artifact@v3
with:
name: bun-test-logs
path: ./bun-test-logs/*

Loading

0 comments on commit 7f5db56

Please sign in to comment.