Skip to content

fix: allow snippets and named routes to be intermixed with site blocks #13

fix: allow snippets and named routes to be intermixed with site blocks

fix: allow snippets and named routes to be intermixed with site blocks #13

Workflow file for this run

name: Lint
on:
push:
branches: [master]
paths:
- grammar.js
pull_request:
paths:
- grammar.js
jobs:
eslint:
name: ESLint
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- name: Code checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
cache: npm
node-version: ${{ vars.NODE_VERSION }}
- name: Install modules
run: npm ci --legacy-peer-deps
- name: Run ESLint
run: npm run lint