Skip to content

Commit

Permalink
add bun test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gudnuf committed Dec 11, 2024
1 parent 829c529 commit 23bf282
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches: [master]
pull_request:
branches: [master]

permissions:
checks: write
pull-requests: write

jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.34

- name: Install dependencies
run: bun install

- name: Run tests
run: bun test

0 comments on commit 23bf282

Please sign in to comment.