Skip to content

Commit

Permalink
Compact CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeboone02 committed Mar 21, 2024
1 parent ae59884 commit 7464807
Showing 1 changed file with 5 additions and 18 deletions.
23 changes: 5 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,12 @@ jobs:
build:
name: Build and test
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install

- name: Build
run: bun run build

- name: Test
run: bun test

- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- run: bun install --frozen-lockfile
- run: bun run build
- run: bun run test
# TODO: Upload to Codecov once Bun outputs lcov (https://github.com/oven-sh/bun/issues/4015)
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v1

0 comments on commit 7464807

Please sign in to comment.