Skip to content

Fixed eslint plugins to pre-commit #66

Fixed eslint plugins to pre-commit

Fixed eslint plugins to pre-commit #66

Workflow file for this run

name: Run eslint
on:
push:
paths:
- frontend/**
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
cache: "npm"
cache-dependency-path: "frontend/package-lock.json"
- name: Install dependencies
working-directory: "frontend"
run: npm ci
- name: Lint
working-directory: "frontend"
run: npm run lint