mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2024-11-09 22:08:12 +01:00
27 lines
527 B
YAML
27 lines
527 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.2"
|
|
|
|
- name: "Setup Node.js"
|
|
uses: "actions/setup-node@v4.1.0"
|
|
with:
|
|
node-version: "lts/*"
|
|
cache: "npm"
|
|
|
|
- name: "Install dependencies"
|
|
run: "npm clean-install"
|
|
|
|
- run: "node --run lint:editorconfig"
|
|
- run: "node --run lint:eslint"
|
|
- run: "node --run lint:prettier"
|