Skip to content

Commit

Permalink
feat: Add GitHub Actions CI workflow
Browse files Browse the repository at this point in the history
This commit introduces a new GitHub Actions workflow for continuous
integration. The workflow is triggered on push and pull request events.
It sets up the environment, installs dependencies, prepares the build,
and runs tests.
  • Loading branch information
ryoppippi committed Aug 3, 2024
1 parent 053f499 commit e7a6d4f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on:
push:
pull_request:

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun i --frozen-lockfile
- run: bun run prepare
- run: bun run test

0 comments on commit e7a6d4f

Please sign in to comment.