Merge pull request #5 from JoaccoG/Fix-readme-redirect-link #11
Workflow file for this run
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: Code audit | |
on: push | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
name: Code audit | |
steps: | |
- name: ⬇ Git checkout | |
uses: actions/checkout@v2 | |
- name: ❓ Check if .editorconfig exists | |
uses: andstor/file-existence-action@v1 | |
with: | |
files: '.editorconfig' | |
- name: ✅ EditorConfig validation | |
uses: snow-actions/[email protected] | |
- name: 🙈 Ensure node_modules is ignored by Git | |
uses: dkershner6/gitignore-parser@v1 | |
with: | |
must_deny: 'node_modules' | |
- name: 💾 Install modules | |
run: npm ci | |
- name: 🔍 ESLint validation | |
run: npx eslint --ignore-path .gitignore . | |
- name: 📏 Check commit message length | |
uses: gsactions/commit-message-checker@v1 | |
with: | |
pattern: '^[^#].{10,74}' | |
error: 'The commit message length must be between 10 and 74' | |
excludeDescription: 'true' | |
excludeTitle: 'true' | |
checkAllCommitMessages: 'true' |