43 lines
909 B
YAML
43 lines
909 B
YAML
|
name: 'Lint'
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [develop]
|
||
|
pull_request:
|
||
|
branches: [master, develop]
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
runs-on: 'ubuntu-latest'
|
||
|
steps:
|
||
|
- uses: 'actions/checkout@v3.0.0'
|
||
|
|
||
|
- name: 'Use Node.js'
|
||
|
uses: 'actions/setup-node@v3.0.0'
|
||
|
with:
|
||
|
node-version: '16.x'
|
||
|
cache: 'npm'
|
||
|
|
||
|
- name: 'Install'
|
||
|
run: 'npm install'
|
||
|
|
||
|
- 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'
|
||
|
|
||
|
- name: 'lint:typescript'
|
||
|
run: 'npm run lint:typescript'
|
||
|
|
||
|
- name: 'lint:prettier'
|
||
|
run: 'npm run lint:prettier'
|
||
|
|
||
|
- name: 'lint:dotenv'
|
||
|
uses: 'dotenv-linter/action-dotenv-linter@v2'
|
||
|
with:
|
||
|
github_token: ${{ secrets.github_token }}
|