lm-piplines/.gitea/workflows/live_monitor_ui.yml
Vyacheslav 327775ae7b
Some checks failed
live_monitor_ui / lint (push) Failing after 5s
feat(live_monitor_ts): create pipline tests and lint
2024-04-24 11:22:00 +03:00

34 lines
568 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
- name: lint
run: yarn lint