mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* chore: use pnpm to manage frontend deps * typo: change content of tips * docs: update node.js require version & replacement installation link * feat: detect the Node.js version to ensure corepack is supported * typo: remove chinese comment * fix: lint CI config, use pnpm to install dependencies * fix: nextui style error when using pnpm * fix: ci setup pnpm cwd * fix: frontend lint ci install deps crash * fix: ci lint frontend missing package.json path * fix: frontend lint ci add cache-dependency-path prop
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
name: Lint
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint-frontend:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install PNPM
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
package_json_file: frontend/package.json
|
|
|
|
- name: Install Node.js 20
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 20
|
|
cache: 'pnpm'
|
|
cache-dependency-path: 'frontend/pnpm-lock.yaml'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
cd frontend
|
|
pnpm install --frozen-lockfile
|
|
|
|
- name: Lint
|
|
run: |
|
|
cd frontend
|
|
pnpm run lint
|
|
|
|
lint-python:
|
|
name: Lint python
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.11
|
|
- name: Install dependencies
|
|
run: pip install ruff mypy
|
|
- name: Run ruff
|
|
run: ruff check --config dev_config/python/ruff.toml opendevin/ agenthub/
|
|
- name: Run mypy
|
|
run: mypy --install-types --non-interactive --config-file dev_config/python/mypy.ini opendevin/ agenthub/
|