Skip to content

Commit

Permalink
fix: fixing PR checks
Browse files Browse the repository at this point in the history
  • Loading branch information
dafuga committed Jun 28, 2024
1 parent b3e778c commit 4fdc806
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,15 @@ jobs:
- name: Install Bun
run: |
curl -fsSL https://bun.sh/install | bash
echo 'export BUN_INSTALL="$HOME/.bun"' >> $GITHUB_ENV
echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> $GITHUB_ENV
source $GITHUB_ENV
- name: Verify Bun installation
run: bun --version
run: ~/.bun/bin/bun --version

- name: Install dependencies
run: bun install
run: ~/.bun/bin/bun install

- name: Run checks
run: bun run make check
run: make check

- name: Run tests
run: bun run make test
run: ~/.bun/bin/bun run test

0 comments on commit 4fdc806

Please sign in to comment.