Skip to content

Fix: Add error status handling for ingestion and sync source #53

Fix: Add error status handling for ingestion and sync source

Fix: Add error status handling for ingestion and sync source #53

Workflow file for this run

name: admin
on:
pull_request:
branches:
- main
paths:
- ui/admin/**
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.17.0"
- name: Install dependencies
run: |
cd ui/admin
npm install
- name: Run linter
run: make lint-admin
- name: Verify no changes
run: make no-changes