Skip to content

fix(deps): rebuild npm lock for micromark-util-entityed resolution error #35

fix(deps): rebuild npm lock for micromark-util-entityed resolution error

fix(deps): rebuild npm lock for micromark-util-entityed resolution error #35

Workflow file for this run

name: ESLint
on:
push:
branches: ["main"]
paths:
- "frontend/**"
pull_request:
branches: ["main"]
paths:
- "frontend/**"
jobs:
eslint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: "./frontend/package-lock.json"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npx eslint . --max-warnings 0