Skip to content

Lint and Format Stencil (Check) #1169

Lint and Format Stencil (Check)

Lint and Format Stencil (Check) #1169

Workflow file for this run

name: Lint and Format Stencil (Check)
on:
merge_group:
workflow_call:
# Make this a reusable workflow, no value needed
# https://docs.github.com/en/actions/using-workflows/reusing-workflows
jobs:
format:
name: Check
runs-on: 'ubuntu-22.04'
steps:
- name: Checkout Code
uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- name: Get Core Dependencies
uses: ./.github/workflows/actions/get-core-dependencies
- name: ESLint
run: npm run lint
- name: Prettier Check
run: npm run prettier.dry-run
shell: bash
- name: Spellcheck
run: npm run spellcheck