Added UI for configuring forms and tables #18
Workflow file for this run
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 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 |