markdownlint-rule-relative-.../.github/workflows/lint.yml

30 lines
659 B
YAML
Raw Normal View History

name: "Lint"
2023-01-02 15:23:16 +01:00
on:
push:
branches: [develop]
pull_request:
branches: [master, develop]
jobs:
lint:
runs-on: "ubuntu-latest"
2023-01-02 15:23:16 +01:00
steps:
2023-11-23 00:37:15 +01:00
- uses: "actions/checkout@v4.1.1"
2023-01-02 15:23:16 +01:00
- name: "Setup Node.js"
2023-12-26 21:11:07 +01:00
uses: "actions/setup-node@v4.0.1"
2023-01-02 15:23:16 +01:00
with:
node-version: "lts/*"
cache: "npm"
2023-01-02 15:23:16 +01:00
- name: "Install dependencies"
run: "npm clean-install"
2023-01-02 15:23:16 +01:00
- 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"
- run: "npm run lint:javascript"