Skip to content

ci(ui): add lint ci #10

ci(ui): add lint ci

ci(ui): add lint ci #10

Workflow file for this run

name: CI UI
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "yarn"
cache-dependency-path: "**/yarn.lock"
- name: Run lint
working-directory: ./ui
run: |
yarn --frozen-lockfile
yarn gen:api
yarn lint