1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/.github/workflows/lint.yml

43 lines
927 B
YAML
Raw Normal View History

name: "Lint"
2022-02-23 19:46:44 +01:00
on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
jobs:
lint:
runs-on: "ubuntu-latest"
2022-02-23 19:46:44 +01:00
steps:
- uses: "actions/checkout@v4.0.0"
2022-02-23 19:46:44 +01:00
- name: "Setup Node.js"
uses: "actions/setup-node@v3.8.1"
2022-02-23 19:46:44 +01:00
with:
node-version: "20.x"
cache: "npm"
2022-02-23 19:46:44 +01:00
- name: "Install dependencies"
run: "npm clean-install"
2022-02-23 19:46:44 +01:00
- name: "lint:commit"
2022-02-23 19:46:44 +01:00
run: 'npm run lint:commit -- --to "${{ github.sha }}"'
- name: "lint:editorconfig"
run: "npm run lint:editorconfig"
2022-02-23 19:46:44 +01:00
- name: "lint:markdown"
run: "npm run lint:markdown"
2022-02-23 19:46:44 +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"
2022-02-23 19:46:44 +01:00
- name: "lint:dotenv"
uses: "dotenv-linter/action-dotenv-linter@v2.18.0"
2022-02-23 19:46:44 +01:00
with:
github_token: ${{ secrets.github_token }}