Update create_file agent skill #137
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow that runs lint on the frontend and python code | |
name: Lint | |
# Only run one workflow of the same group at a time. | |
# There can be at most one running and one pending job in a concurrency group at any time. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
# Run lint on the frontend code | |
lint-frontend: | |
name: Lint frontend | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: | | |
cd frontend | |
npm install --frozen-lockfile | |
- name: Lint | |
run: | | |
cd frontend | |
npm run lint | |
# Run lint on the python code | |
lint-python: | |
name: Lint python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
cache: 'pip' | |
- name: Install pre-commit | |
run: pip install pre-commit==3.7.0 | |
- name: Run pre-commit hooks | |
run: pre-commit run --files opendevin/**/* agenthub/**/* evaluation/**/* tests/**/* --show-diff-on-failure --config ./dev_config/python/.pre-commit-config.yaml |