Skip to content

enhancement(python-sdk) Added graph validation for unreachable nodes.… #9

enhancement(python-sdk) Added graph validation for unreachable nodes.…

enhancement(python-sdk) Added graph validation for unreachable nodes.… #9

Workflow file for this run

name: UI
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
paths:
- 'server/ui/**'
- '.github/workflows/tests_ui.yaml'
jobs:
lint:

Check failure on line 15 in .github/workflows/ui.yaml

View workflow run for this annotation

GitHub Actions / UI

Invalid workflow file

The workflow is not valid. .github/workflows/ui.yaml (Line: 15, Col: 3): The workflow must contain at least one job with no dependencies.
name: Lint Checks
needs: changes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
if: ${{ needs.changes.outputs.ui == 'true' }}
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Npm Install
if: ${{ needs.changes.outputs.ui == 'true' }}
run: cd server/ui && npm ci
- name: UI Lint Check
if: ${{ needs.changes.outputs.ui == 'true' }}
run: cd server/ui && npm run lint