Skip to content

Commit

Permalink
do not use bun testing framework
Browse files Browse the repository at this point in the history
  • Loading branch information
gflohr committed Jan 8, 2025
1 parent 46e0377 commit a7458e7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-quick.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
run: ls node_modules/

- name: Run tests
run: bun test
run: bun run test
15 changes: 12 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,28 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [22]
node-version: [16, 18, 20, 22]

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

- name: Set up Node.js
uses: oven-sh/setup-bun@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Set up Bun
uses: oven-sh/setup-bun@v2

- name: Install dependencies
run: bun install

- name: Node.js Version
run: node -v

- name: List Node Modules
run: ls node_modules/

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

0 comments on commit a7458e7

Please sign in to comment.