Skip to content

[AgentOps] Support helm chart for production hosting [1/n] #115

[AgentOps] Support helm chart for production hosting [1/n]

[AgentOps] Support helm chart for production hosting [1/n] #115

Workflow file for this run

name: Lint & Format
permissions:
contents: read
on:
push:
branches: [main, pivot/agentops]
pull_request:
jobs:
python:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Ruff lint
uses: astral-sh/ruff-action@v3
with:
version: "0.15.0"
args: check
- name: Ruff format check
uses: astral-sh/ruff-action@v3
with:
version: "0.15.0"
args: format --check
typescript:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: pnpm
cache-dependency-path: frontend/pnpm-lock.yaml
- name: Install dependencies
run: cd frontend && pnpm install --frozen-lockfile
- name: ESLint
run: cd frontend && pnpm run lint
- name: Prettier check
run: cd frontend && pnpm run format:check