Skip to content

Commit

Permalink
test: add failing bun test run to CI to observe improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
panva committed Oct 3, 2023
1 parent a9d3a87 commit f0c9275
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,24 @@ jobs:
run: npm clean-install
- run: npm run test

bun:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
id: node
with:
node-version: lts/hydrogen # 18
cache: 'npm'
check-latest: true
- name: Install dependencies
run: npm clean-install
- run: curl https://bun.sh/install | bash
- run: ~/.bun/bin/bun ./node_modules/.bin/mocha test/**/*.test.js

electron:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit f0c9275

Please sign in to comment.