Skip to content

npm: bump qunit-dom from 3.1.1 to 3.1.2 in /ui #818

npm: bump qunit-dom from 3.1.1 to 3.1.2 in /ui

npm: bump qunit-dom from 3.1.1 to 3.1.2 in /ui #818

Workflow file for this run

name: UI Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
paths:
- 'ui/**'
pull_request:
branches:
- main
paths:
- 'ui/**'
jobs:
lint-app:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Use Node
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
run: make ui-dependencies
- name: lint
run: cd ui/ && npm run lint