Skip to content

ci: add linting using eslint #5

ci: add linting using eslint

ci: add linting using eslint #5

Workflow file for this run

name: build
on:
pull_request:
jobs:
build:
runs-on: [ubuntu-22.04]
container:
image: node:20.17.0-alpine3.19
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint