2023-01-02 15:23:16 +01:00
|
|
|
name: 'Lint'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [develop]
|
|
|
|
pull_request:
|
|
|
|
branches: [master, develop]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-04-02 21:03:51 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.0'
|
2023-01-02 15:23:16 +01:00
|
|
|
|
|
|
|
- name: 'Use Node.js'
|
2023-04-02 21:03:51 +02:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2023-01-02 15:23:16 +01:00
|
|
|
with:
|
|
|
|
node-version: 'lts/*'
|
|
|
|
cache: 'npm'
|
|
|
|
|
|
|
|
- name: 'Install'
|
|
|
|
run: 'npm install'
|
|
|
|
|
|
|
|
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
|
|
|
- run: 'npm run lint:editorconfig'
|
|
|
|
- run: 'npm run lint:markdown'
|
|
|
|
- run: 'npm run lint:eslint'
|
|
|
|
- run: 'npm run lint:prettier'
|