Skip to content

npm: bump postcss from 8.4.21 to 8.4.31 in /ui #676

npm: bump postcss from 8.4.21 to 8.4.31 in /ui

npm: bump postcss from 8.4.21 to 8.4.31 in /ui #676

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@v3
with:
node-version: '16'
- name: Install dependencies
run: make ui-dependencies
- name: lint
run: cd ui/ && npm run lint