Skip to content
This repository was archived by the owner on Apr 10, 2025. It is now read-only.

chore(deps-dev): bump eslint from 8.57.1 to 9.24.0 #161

chore(deps-dev): bump eslint from 8.57.1 to 9.24.0

chore(deps-dev): bump eslint from 8.57.1 to 9.24.0 #161

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [18.x]
python-version: [3.10.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
registry-url: 'https://registry.npmjs.org'
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
npm install
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f setup.py ]; then pip install -e .; fi
- name: Run TypeScript build
run: npm run build
- name: Run tests
run: |
npm test
python -m pytest
- name: Run linting
run: |
npm run lint
if [ -f .pylintrc ]; then pylint openhands_dynamic_agent_factory; fi