Skip to content

Commit

Permalink
run tests with bun
Browse files Browse the repository at this point in the history
  • Loading branch information
szuperaz committed Nov 22, 2023
1 parent 73cebda commit c8b094e
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test with Node.js
name: Test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STREAM_API_KEY: ${{ vars.TEST_API_KEY }}
Expand All @@ -12,11 +12,10 @@ on:
types: [opened, synchronize, reopened]

jobs:
test-and-build:
test-node:
strategy:
matrix:
version: [18, 20]
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -36,3 +35,28 @@ jobs:

- name: Test
run: yarn test
test-bun:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Bun@1
uses: oven-sh/setup-bun@v1
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: "yarn"

- name: Install Dependencies
run: yarn install --immutable

- name: Build
run: yarn build

- name: Test
run: yarn test

- name: Test
run: bun run vitest

0 comments on commit c8b094e

Please sign in to comment.