2020-08-06 07:42:45 -04:00
|
|
|
name: Code Linting
|
2021-09-27 02:03:30 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
2020-07-11 07:41:31 -04:00
|
|
|
jobs:
|
2022-03-18 09:27:50 -04:00
|
|
|
Prettier:
|
2020-07-11 07:41:31 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-18 09:27:50 -04:00
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v2
|
2020-07-11 07:41:31 -04:00
|
|
|
|
2022-03-18 09:27:50 -04:00
|
|
|
- name: Install NodeJS
|
|
|
|
uses: actions/setup-node@v2
|
2020-07-11 07:41:31 -04:00
|
|
|
|
2022-03-18 09:27:50 -04:00
|
|
|
- name: Install Prettier
|
|
|
|
run: npm install -g prettier
|
2020-07-11 07:41:31 -04:00
|
|
|
|
2022-03-18 09:27:50 -04:00
|
|
|
- name: Run Prettier --check
|
|
|
|
run: prettier --check .
|
2020-07-11 07:41:31 -04:00
|
|
|
|
2020-11-17 10:48:46 -05:00
|
|
|
EditorConfig:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-07-11 07:41:31 -04:00
|
|
|
|
2022-02-15 06:15:27 -05:00
|
|
|
- uses: actions/setup-node@v2
|
2020-07-11 07:41:31 -04:00
|
|
|
|
2020-11-17 10:48:46 -05:00
|
|
|
- name: Install editorconfig-checker
|
|
|
|
run: npm install -g editorconfig-checker
|
2020-07-11 07:41:31 -04:00
|
|
|
|
2020-11-17 10:48:46 -05:00
|
|
|
- name: Run ECLint check
|
2020-12-17 18:20:30 -05:00
|
|
|
run: editorconfig-checker -exclude README.md $(git ls-files | grep -v test)
|