Skip to content

Commit

Permalink
Add CI for running bun tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AJGeel committed Nov 20, 2023
1 parent a8cc841 commit 3efa872
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: GitHub CI

on: [push]

jobs:
build-and-start:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: bun install
- run: bun test

0 comments on commit 3efa872

Please sign in to comment.