mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-11 14:02:37 +08:00
18 lines
358 B
YAML
18 lines
358 B
YAML
name: Tests CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Test using Node.js
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '18'
|
|
- name: Run tests
|
|
working-directory: ./tests-ui
|
|
run: |
|
|
npm install
|
|
npm test |