From e17829e7fad1476e32bccb10238fa73d4e07a034 Mon Sep 17 00:00:00 2001 From: Arif Hasanic Date: Thu, 28 Aug 2025 13:08:32 +0200 Subject: [PATCH] create github action --- .github/workflows/ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8a8a340 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,32 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + container: + image: oven/bun + steps: + - uses: actions/checkout@v4 + - name: Install dependencies + run: bun install + - name: Build + run: bun run build + + lint: + runs-on: ubuntu-latest + container: + image: oven/bun + steps: + - uses: actions/checkout@v4 + - name: Install Biome + run: bun install -g biome + - name: Biome Check + run: biome check + - name: Biome Lint + run: biome lint \ No newline at end of file