Skip to content

MEP

MEP #394

Workflow file for this run

name: ESLint
on:
push:
branches: [ main, recette ]
pull_request:
branches: [ main, recette ]
jobs:
eslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint