Skip to content

Commit

Permalink
Use Bun instead of Node action
Browse files Browse the repository at this point in the history
  • Loading branch information
knutkirkhorn committed Feb 22, 2024
1 parent 5809f1c commit 57cc600
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,9 @@ on:
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 18
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run format:check
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun run format:check

0 comments on commit 57cc600

Please sign in to comment.