2021-06-17 18:48:19 +02:00
|
|
|
name: 'Lint'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-08-26 23:58:19 +02:00
|
|
|
branches: [develop]
|
2021-06-17 18:48:19 +02:00
|
|
|
pull_request:
|
2022-08-26 16:29:20 +02:00
|
|
|
branches: [master, develop]
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: 'ubuntu-latest'
|
|
|
|
steps:
|
2023-04-02 21:52:34 +02:00
|
|
|
- uses: 'actions/checkout@v3.5.0'
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
- name: 'Use Node.js'
|
2023-01-10 21:23:32 +01:00
|
|
|
uses: 'actions/setup-node@v3.6.0'
|
2021-06-17 18:48:19 +02:00
|
|
|
with:
|
2022-02-19 17:18:13 +01:00
|
|
|
node-version: 'lts/*'
|
|
|
|
cache: 'npm'
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
- name: 'Install'
|
2022-02-19 17:18:13 +01:00
|
|
|
run: 'npm install'
|
2021-06-17 18:48:19 +02:00
|
|
|
|
|
|
|
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
|
|
|
|
- run: 'npm run lint:editorconfig'
|
|
|
|
- run: 'npm run lint:markdown'
|
2023-01-10 21:23:32 +01:00
|
|
|
- run: 'npm run lint:eslint'
|
2022-04-06 23:52:50 +02:00
|
|
|
- run: 'npm run lint:prettier'
|