try to get backends running on mac - part II comfyui works #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint TS | |
on: [push, pull_request] | |
jobs: | |
lint-ts: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./WebUI | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npm run lint:ci | |
- run: npm run format:ci |