Skip to content

ci: update PR ci to only run one "task" with all jobs and not two "ta… #14

ci: update PR ci to only run one "task" with all jobs and not two "ta…

ci: update PR ci to only run one "task" with all jobs and not two "ta… #14

name: Check branch changes
on:
push:
branches:
- main
jobs:
frontend_lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check formatting
run: bun run format:check
frontend_build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build