mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
25 lines
382 B
YAML
25 lines
382 B
YAML
name: ESLint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
- 'dev*'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- master
|
|
- 'dev*'
|
|
|
|
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 |