Skip to content

Commit

Permalink
chore: adding bun compatibility (#505)
Browse files Browse the repository at this point in the history
* chore: add support for bun

* chore: don't save bun lock

* fix: wrong formatting

* chore: changing how tests are ran
  • Loading branch information
nicholasgriffintn authored Jul 3, 2024
1 parent 58247e9 commit b743f2d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
pull-requests: write

jobs:
build:
test-node:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -44,3 +44,18 @@ jobs:
with:
name: test-reports-${{ matrix.node-version }}
path: test/reports/

test-bun:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v1

- name: Install Bun Packages
run: bun install --no-save

- name: Run Bun Tests
run: bun run test

0 comments on commit b743f2d

Please sign in to comment.