mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
New GitHub Action to lint code style
This commit is contained in:
parent
0241467b1e
commit
a547f27f21
1 changed files with 53 additions and 0 deletions
53
.github/workflows/lint-code.yml
vendored
Normal file
53
.github/workflows/lint-code.yml
vendored
Normal file
|
@ -0,0 +1,53 @@
|
|||
name: Lint Code
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
Markdown:
|
||||
name: Test Markdown syntax
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '10'
|
||||
|
||||
- name: Install markdownlint
|
||||
run: npm install -g markdownlint-cli
|
||||
|
||||
- name: Run Markdownlint
|
||||
run: markdownlint ${GITHUB_WORKSPACE} -c ${GITHUB_WORKSPACE}/.github/markdownlint.yml
|
||||
|
||||
EditorConfig:
|
||||
name: Test Editor Config rules
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '10'
|
||||
|
||||
- name: Install ECLint
|
||||
run: npm install -g eclint
|
||||
|
||||
- name: Run ECLint check
|
||||
run: eclint check $(git ls-files | grep -v test)
|
||||
|
||||
YAML:
|
||||
name: Test YAML syntax
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: Install NodeJS
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: '10'
|
||||
|
||||
- name: Install yaml-lint
|
||||
run: npm install -g yaml-lint
|
||||
|
||||
- name: Run yaml-lint
|
||||
run: yamllint $(find ${GITHUB_WORKSPACE} -type f -name "*.yaml" -or -name "*.yml")
|
Loading…
Reference in a new issue