1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-02-22 04:39:28 +00:00

23 lines
362 B
YAML
Raw Normal View History

2023-06-11 09:40:16 +02:00
name: Linter
on:
2024-08-04 12:43:55 +02:00
- push
- pull_request
2023-06-11 09:40:16 +02:00
jobs:
eslint:
2024-08-04 12:43:55 +02:00
name: Run ESLint
2023-06-11 09:40:16 +02:00
runs-on: ubuntu-latest
steps:
- name: Checkout
2024-08-04 12:43:55 +02:00
uses: actions/checkout@v4
2023-06-11 09:40:16 +02:00
- name: Install dependencies
run: npm ci
working-directory: ./frontend
- name: Run ESLint
run: npx eslint .
working-directory: ./frontend