mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-11 05:52:33 +08:00
add ci action
This commit is contained in:
parent
36534e043a
commit
1a24b4448f
17
.github/workflows/test-ui.yaml
vendored
Normal file
17
.github/workflows/test-ui.yaml
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
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: '12'
|
||||
working-directory: ./tests-ui
|
||||
run: |
|
||||
npm install
|
||||
npm test
|
||||
Loading…
Reference in New Issue
Block a user