Files
ComfyUI_frontend/.github/workflows/eslint.yaml
2025-02-20 14:33:10 +11:00

22 lines
354 B
YAML

name: ESLint
on:
pull_request:
branches:
- main
- master
- 'dev*'
- 'core/*'
- 'desktop/*'
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: lts/*
- run: npm ci
- run: npm run lint