chore: Drop twitter from docs #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup node | |
uses: ./.github/actions/setup-node | |
with: | |
NODEJS_VERSION: '20' | |
- 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 |