2022-02-23 19:46:44 +01:00
|
|
|
name: 'Lint'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [develop]
|
|
|
|
pull_request:
|
|
|
|
branches: [master, develop]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-07-02 16:42:39 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.3'
|
2022-02-23 19:46:44 +01:00
|
|
|
|
2023-05-13 19:09:54 +02:00
|
|
|
- name: 'Setup Node.js'
|
2023-01-10 23:56:46 +01:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2022-02-23 19:46:44 +01:00
|
|
|
with:
|
2022-10-03 20:52:15 +02:00
|
|
|
node-version: '18.x'
|
2022-02-23 19:46:44 +01:00
|
|
|
cache: 'npm'
|
|
|
|
|
2023-05-13 19:09:54 +02:00
|
|
|
- name: 'Install dependencies'
|
|
|
|
run: 'npm clean-install'
|
2022-02-23 19:46:44 +01:00
|
|
|
|
|
|
|
- name: 'lint:commit'
|
|
|
|
run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
|
|
|
|
|
|
|
- name: 'lint:editorconfig'
|
|
|
|
run: 'npm run lint:editorconfig'
|
|
|
|
|
|
|
|
- name: 'lint:markdown'
|
|
|
|
run: 'npm run lint:markdown'
|
|
|
|
|
2023-01-10 23:56:46 +01:00
|
|
|
- name: 'lint:eslint'
|
|
|
|
run: 'npm run lint:eslint'
|
2022-02-23 19:46:44 +01:00
|
|
|
|
|
|
|
- name: 'lint:prettier'
|
|
|
|
run: 'npm run lint:prettier'
|
|
|
|
|
|
|
|
- name: 'lint:dotenv'
|
|
|
|
uses: 'dotenv-linter/action-dotenv-linter@v2'
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.github_token }}
|