apisix/.github/workflows/lint.yml
dependabot[bot] 1083359228
chore(deps): bump actions/checkout from 2.3.5 to 2.4.0 (#5408)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-11-03 17:26:59 +08:00

53 lines
1.2 KiB
YAML

name: ❄️ Lint
on: [pull_request]
jobs:
trailing-whitespace:
name: 🌌 Trailing whitespace
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- uses: actions/checkout@v2.4.0
- name: 🧹 Check for trailing whitespace
run: "! git grep -EIn $'[ \t]+$'"
misc:
name: misc checker
runs-on: ubuntu-latest
steps:
- name: Check out code.
uses: actions/checkout@v2.4.0
- name: Install
run: |
wget -O - -q https://git.io/misspell | sh -s -- -b .
- name: Misspell
run: |
git grep --cached -l '' | xargs ./misspell -error
- name: Merge conflict
run: |
grep "^<<<<<<< HEAD" $(git grep --cached -l '' | xargs) && exit 1 || true
- name: Plugin Code
run: |
sudo bash ./utils/check-plugins-code.sh
ci-eclint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out code
uses: actions/checkout@v2.4.0
- name: Setup Nodejs env
uses: actions/setup-node@v2
with:
node-version: '12'
- name: Install eclint
run: |
sudo npm install -g eclint
- name: Run eclint
run: |
eclint check