Skip to content

Commit

Permalink
github action attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerbarker committed May 9, 2024
1 parent ccab860 commit 5b9013c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: build-and-test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
my-job:
name: build-and-test-job
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1

# run any `bun` or `bunx` command
- run: bun install
- run: bun run build:lib
- run: bun test

0 comments on commit 5b9013c

Please sign in to comment.