Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Feature/no ref/ci

Feature/no ref/ci #1

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint