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 88f518a
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14, 16, 18]
node-version: [16, 18]
name: Node.js v${{ matrix.node-version }}
steps:
- name: Setup Node.js
Expand All @@ -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: ~/.bun/bin/bun run make check

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

0 comments on commit 88f518a

Please sign in to comment.