mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-02-22 20:59:28 +00:00
23 lines
362 B
YAML
23 lines
362 B
YAML
name: Linter
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
eslint:
|
|
name: Run ESLint
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
working-directory: ./frontend
|
|
|
|
- name: Run ESLint
|
|
run: npx eslint .
|
|
working-directory: ./frontend
|