Skip to content

ds033 bugsfix in cluster #14

ds033 bugsfix in cluster

ds033 bugsfix in cluster #14

Workflow file for this run

name: Lint UI with eslint and prettier
on:
pull_request:
branches:
- master
- "*_release"
paths:
- "ui/**/*"
jobs:
ui-lint:
name: ui-lint
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: Check code style
run: cd ui && yarn check-style
- name: Lint
run: cd ui && yarn lint