1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-20 01:35:53 +02:00
eslint-config-conventions/.github/workflows/lint.yml

35 lines
717 B
YAML
Raw Normal View History

name: "Lint"
2022-02-19 16:05:21 +01:00
on:
push:
branches: [develop]
2022-02-19 16:05:21 +01:00
pull_request:
2024-02-16 20:04:49 +01:00
branches: [main, develop]
2022-02-19 16:05:21 +01:00
jobs:
lint:
runs-on: "ubuntu-latest"
2022-02-19 16:05:21 +01:00
steps:
2024-07-10 12:42:53 +02:00
- uses: "actions/checkout@v4.1.7"
2022-02-19 16:05:21 +01:00
- name: "Setup Node.js"
2024-07-10 12:42:53 +02:00
uses: "actions/setup-node@v4.0.3"
2022-02-19 16:05:21 +01:00
with:
2024-07-25 14:01:48 +02:00
node-version: "22.x"
cache: "npm"
2022-02-19 16:05:21 +01:00
- name: "Install dependencies"
run: "npm clean-install"
2022-02-19 16:05:21 +01:00
- run: "node --run lint:editorconfig"
- run: "node --run lint:markdown"
- run: "node --run lint:eslint"
- run: "node --run lint:prettier"
commitlint:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4.1.7"
- uses: "wagoid/commitlint-github-action@v6.1.2"