mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-19 13:27:58 +00:00
25 lines
410 B
YAML
25 lines
410 B
YAML
|
name: Linter
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ "main" ]
|
||
|
pull_request:
|
||
|
branches: [ "main" ]
|
||
|
|
||
|
jobs:
|
||
|
eslint:
|
||
|
name: Run ESlint
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: npm ci
|
||
|
working-directory: ./frontend
|
||
|
|
||
|
- name: Run ESLint
|
||
|
run: npx eslint .
|
||
|
working-directory: ./frontend
|