Skip to content

Combined linting commands into one #7

Combined linting commands into one

Combined linting commands into one #7

Workflow file for this run

name: Lint
on:
push:
branches:
- dev
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Run ESLint and HTMLHint
run: npm run lint