diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c72c64f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,42 @@ +name: CI + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +permissions: + contents: read + pull-requests: write + +on: + push: + branches: + - main + + pull_request: + branches: + - main + +jobs: + build: + runs-on: ${{ matrix.os }} + + permissions: + contents: read + pull-requests: write + + strategy: + matrix: + os: [ubuntu-latest] + + steps: + - uses: actions/checkout@v4 + + - run: corepack enable + - uses: oven-sh/setup-bun@v2 + + - name: 📦 Install dependencies + run: bun install --frozen-lockfile + + - name: 🛠️ Build + run: bun run build diff --git a/bun.lockb b/bun.lockb index 9026c3c..0266889 100755 Binary files a/bun.lockb and b/bun.lockb differ