33 lines
697 B
YAML
33 lines
697 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
name: Lint files
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
|
|
- name: Setup node
|
|
uses: ./.github/actions/setup-node
|
|
with:
|
|
NODEJS_VERSION: '24'
|
|
|
|
- name: Run ESLint
|
|
run: yarn run eslint
|
|
|
|
- name: Lint markdown files
|
|
run: yarn run markdownlint
|
|
|
|
- name: Lint shell scripts with shellcheck
|
|
run: shellcheck bin/heroku bin/setup
|
|
|
|
- name: Lint JSON files
|
|
run: sudo apt install -y jq && yarn run jsonlint
|