Skip to content

Merge pull request #173 from andypiper/html-validation #96

Merge pull request #173 from andypiper/html-validation

Merge pull request #173 from andypiper/html-validation #96

Workflow file for this run

name: Run ESLint + Prettier
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
jobs:
eslint:
name: Linting
runs-on: ubuntu-latest # on which machine to run
steps:
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Code Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: npm ci
- name: Code Linting
run: npm run lint