difftastic/vendored_parsers/tree-sitter-devicetree/.github/workflows/lint.yml

22 lines
350 B
YAML

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install modules
run: npm install
- name: Run Prettier
run: npm run prettier:check
- name: Run ESLint
run: npm run lint