Files
toknd_auth/.github/workflows/ci.yml
ramvignesh-b 78520b9069
CI / build (pull_request) Failing after 1m40s
feat: add CI workflow for linting and testing using Bun
2026-05-11 16:59:17 +05:30

29 lines
465 B
YAML

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