mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
17 lines
305 B
YAML
17 lines
305 B
YAML
name: ESlint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
pull_request:
|
|
|
|
jobs:
|
|
eslint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install yarn dependencies
|
|
run: cd app && yarn install --frozen-lockfile
|
|
- name: Run linter
|
|
run: cd app && yarn lint
|