2
1
mirror of https://github.com/Thream/api.git synced 2024-07-21 03:38:31 +02:00
api/.github/workflows/lint.yml

34 lines
755 B
YAML
Raw Normal View History

2021-10-24 04:06:16 +02:00
name: 'Lint'
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
lint:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v2'
- name: 'Use Node.js'
2021-10-24 04:18:18 +02:00
uses: 'actions/setup-node@v2.4.1'
2021-10-24 04:06:16 +02:00
with:
node-version: '16.x'
2021-10-24 04:18:18 +02:00
cache: 'npm'
2021-10-24 04:06:16 +02:00
- name: 'Install'
2021-10-24 04:18:18 +02:00
run: 'npm install'
2021-10-24 04:06:16 +02:00
- run: 'npm run lint:commit -- --to "${{ github.sha }}"'
- run: 'npm run lint:editorconfig'
- run: 'npm run lint:markdown'
- run: 'npm run lint:docker'
- run: 'npm run lint:typescript'
2021-10-24 04:18:18 +02:00
- name: 'dotenv-linter'
uses: 'dotenv-linter/action-dotenv-linter@v2'
with:
github_token: ${{ secrets.github_token }}