cleanup precommit hooks (#3616)

Co-authored-by: Suchintan <suchintan@users.noreply.github.com>
This commit is contained in:
greg niemeyer
2025-10-09 18:20:02 -07:00
committed by GitHub
parent 451d5787cd
commit 7cd92f6972
6 changed files with 26 additions and 26 deletions

View File

@@ -64,9 +64,18 @@ jobs:
if: steps.cache-venv.outputs.cache-hit == 'true'
run: |
uv sync --group dev
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: skyvern-frontend/package-lock.json
- name: Install frontend dependencies
working-directory: skyvern-frontend
run: npm ci
# Finally, run pre-commit.
- name: Run all pre-commit hooks
uses: pre-commit/action@v3.0.0
run: uv run pre-commit run --all-files
env:
ENABLE_OPENAI: "true"
OPENAI_API_KEY: "sk-dummy"