Skip to content

fix(antdx): resolve Think component React #130 in production build #612

fix(antdx): resolve Think component React #130 in production build

fix(antdx): resolve Think component React #130 in production build #612

Workflow file for this run

name: Lint Test
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout Code Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install Python Dependencies
run: pip install flake8 isort yapf
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 22
- name: Install Pnpm
run: npm i pnpm@^10 -g
- name: Install Node Dependencies
run: pnpm install
- name: Run Lint
run: pnpm run lint