1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-11-14 22:53:13 +01:00
eslint-config-conventions/.github/workflows/lint.yml
Théo LUDWIG d9536865d8
feat!: add support for ESLint v9
Fixes #2

BREAKING CHANGE: peerDependencies:
`eslint@^9.12.0`
`eslint-plugin-promise@^7.1.0`
`eslint-plugin-unicorn@^56.0.0`
`globals@^15.10.0`
`typescript-eslint@^8.8.0`

BREAKING CHANGE: Node.js >= 20.9.0
2024-10-07 17:28:54 +02:00

34 lines
677 B
YAML

name: "Lint"
on:
push:
branches: [develop]
pull_request:
branches: [main, develop]
jobs:
lint:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4.2.0"
- name: "Setup Node.js"
uses: "actions/setup-node@v4.0.4"
with:
node-version: "22.x"
cache: "npm"
- name: "Install dependencies"
run: "npm clean-install"
- run: "node --run lint:editorconfig"
- run: "node --run lint:eslint"
- run: "node --run lint:prettier"
commitlint:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4.2.0"
- uses: "wagoid/commitlint-github-action@v6.1.2"