Skip to content

Update Inline Menu Deep Dive Documentation #1839

Update Inline Menu Deep Dive Documentation

Update Inline Menu Deep Dive Documentation #1839

Workflow file for this run

name: Lint
on:
push:
paths-ignore:
- ".github/workflows/**"
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
steps:
- name: Check out repo
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Set up Node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Lint and spellcheck
run: |
npm ci
npm run lint
npm run spellcheck