Skip to content

Commit

Permalink
Fix test action
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-gordon committed Jul 27, 2024
1 parent 40f7372 commit 1f61b90
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
node-version: "lts/*" # Use the latest LTS version
- uses: pnpm/action-setup@v4
with:
version: 8.6.0
run_install: true
bun-version: latest
- name: Install Dependencies
run: bun install --frozen-lockfile
- name: Lint
run: pnpm -F graph-selector lint:ci
run: bun --filter graph-selector lint:ci
- name: Run Tests
run: pnpm test
run: bun --filter graph-selector test

0 comments on commit 1f61b90

Please sign in to comment.