Skip to content

updated configs

updated configs #1

Workflow file for this run

name: Check compile and linting
on:
push:
branches:
- main
paths:
- "apps/**"
- ".github/workflows/ci.yaml"
- "turbo.json"
- "biome.json"
- "package.json"
pull_request:
branches:
- main
paths:
- "apps/**"
- ".github/workflows/ci.yaml"
- "turbo.json"
- "biome.json"
- "package.json"
jobs:
check-compile-and-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- name: Install bun dependencies
run: bun install
- name: Check project linting
run: bun lint
- name: Check project compile
run: bun run build