Skip to content

Added linters to the project #1

Added linters to the project

Added linters to the project #1

Workflow file for this run

name: Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci # For JavaScript linting (replace with your package manager command)
- name: Run ESLint
run: npx eslint . --ext .js
- name: Run HTMLHint
run: npx htmlhint .
- name: Run Stylelint
run: npx stylelint .
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install Python dependencies
run: pip install -r requirements.txt # For Python linting (replace with your command)
- name: Run Pylint
run: pylint .