Skip to content

Merge branch 'main' of https://github.com/Akademiaapp/frontend #8

Merge branch 'main' of https://github.com/Akademiaapp/frontend

Merge branch 'main' of https://github.com/Akademiaapp/frontend #8

Workflow file for this run

name: Lint frontend
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install --frozen-lockfile --silent
env:
CI: true
- uses: pre-commit/[email protected]
- name: Build
run: bun run build
env:
CI: true
- name: Check
run: bun run check
env:
CI: true