Skip to content

Commit

Permalink
ci: add integration workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DaleSeo committed Oct 23, 2024
1 parent 1cf4c52 commit 56e239f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 🔄 Integration

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run format:check
- run: bun run lint
- run: bun run coverage
- run: bun run build

0 comments on commit 56e239f

Please sign in to comment.