feat: add CI workflow for linting and testing using Bun
CI / build (pull_request) Failing after 1m40s

This commit is contained in:
ramvignesh-b
2026-05-11 16:59:17 +05:30
parent dfff0e913d
commit 78520b9069
+28
View File
@@ -0,0 +1,28 @@
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run linting
run: bun run check-all
- name: Run tests
run: bun run test