lm-piplines/.gitea/workflows/live_monitor_ui.yml
Vyacheslav d27c8d379f
Some checks failed
live_monitor_ui / lint (push) Failing after 1m5s
feat(live_monitor_ts): create pipline tests and lint
2024-04-24 11:20:29 +03:00

35 lines
657 B
YAML

name: live_monitor_ui
on:
push:
branches:
- main
- live_monitor_ts_workflow
pull_request:
branches:
- main
- live_monitor_ts_workflow
jobs:
lint:
name: lint
runs-on: 'ubuntu'
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: '21.x'
- name: install yarn
run: npm install --global yarn
- name: install node_modules
run: yarn
working-directory: ./live_monitor_ts
- name: lint
run: yarn lint
working-directory: ./live_monitor_ts