Skip to content

Lint

Lint #30

Workflow file for this run

name: Lint
run-name: "Lint"
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Code checkout
uses: actions/checkout@v3
- name: Install NodeJS
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm ci --omit=optional
- name: Code linting
run: npm run lint:ci