Skip to content

Added UI for configuring forms and tables #18

Added UI for configuring forms and tables

Added UI for configuring forms and tables #18

Workflow file for this run

name: Lint UI with ESLint
on:
pull_request:
branches:
- master
paths:
- "ui/**/*"
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
cache-dependency-path: ui/yarn.lock
- name: Install dependencies
run: cd ui && yarn install --frozen-lockfile
- name: Lint
run: cd ui && yarn lint