Skip to content

Merge pull request #21 from ScottLogic/chore/license #22

Merge pull request #21 from ScottLogic/chore/license

Merge pull request #21 from ScottLogic/chore/license #22

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
- name: Install Node.js dependencies
run: npm ci
- name: Code Linting Check
run: npm run lint:check:all