Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update pipeline to run bun test
  • Loading branch information
maff committed Jan 22, 2025
commit 5b1657b9385ef0886df2e66e3b811faf33b4c145
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: git-that-semver
uses: ./.github/actions/git-that-semver

Expand All @@ -39,14 +40,17 @@ jobs:
uses: actions/checkout@v4

- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2

- name: Install dependencies
run: bun install --frozen-lockfile

- name: Lint
run: bun prettier . --check

- name: Test
run: bun test

docker-build:
runs-on: ubuntu-latest
needs: lint
Expand Down