yunohost-admin/.github/workflows/eslint.yml
OniriCorpe c6f4506308
update actions/checkout@v3 to v4
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
2024-02-25 04:18:46 +01:00

17 lines
283 B
YAML

name: ESlint
on:
push:
branches:
- dev
pull_request:
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install npm dependencies
run: cd app && npm ci
- name: Run linter
run: cd app && npm run lint