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