mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-03 06:12:14 +08:00
70 lines
1.3 KiB
YAML
70 lines
1.3 KiB
YAML
name: Lint Check
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'main' ]
|
|
pull_request:
|
|
branches: [ '*' ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v7
|
|
|
|
- name: Install dependencies
|
|
working-directory: backend
|
|
run: |
|
|
uv sync --group dev
|
|
|
|
- name: Lint backend
|
|
working-directory: backend
|
|
run: make lint
|
|
|
|
lint-frontend:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '22'
|
|
|
|
- name: Enable Corepack
|
|
run: corepack enable
|
|
|
|
- name: Use pinned pnpm version
|
|
run: corepack prepare pnpm@10.26.2 --activate
|
|
|
|
- name: Install frontend dependencies
|
|
run: |
|
|
cd frontend
|
|
pnpm install --frozen-lockfile
|
|
|
|
- name: Run frontend linting
|
|
run: |
|
|
cd frontend
|
|
pnpm lint
|
|
|
|
- name: Check TypeScript types
|
|
run: |
|
|
cd frontend
|
|
pnpm typecheck
|
|
|
|
- name: Build frontend
|
|
run: |
|
|
cd frontend
|
|
BETTER_AUTH_SECRET=local-dev-secret pnpm build
|