Skip to content

Commit

Permalink
Build on GitHub CI
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Sek committed Dec 23, 2024
1 parent 721bdd0 commit 76e51f9
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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-24.04]

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
Binary file modified bun.lockb
Binary file not shown.

0 comments on commit 76e51f9

Please sign in to comment.