Skip to content

Commit

Permalink
Use bun on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldrapper committed Apr 6, 2024
1 parent baf184d commit fda3919
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,17 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".node-version"
cache: "npm"
- name: Setup Bun
uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: npm install
run: bun install

- name: Build
run: npm run build
run: bun run build

- name: Lint
run: npm run lint
run: bun run lint

- name: Run Tests
run: npm run test || npm run test
run: bun run test || bun run test

0 comments on commit fda3919

Please sign in to comment.