Skip to content

Commit

Permalink
feat: bun workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
irisdv committed Oct 21, 2024
1 parent 6780a16 commit 41ac1c3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI Tests

on: [push, pull_request]

jobs:
typescript-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

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

- name: Install dependencies
run: bun install

- name: Build project
run: bun run build

- name: Run tests
run: bun test

0 comments on commit 41ac1c3

Please sign in to comment.