Skip to content

Interprétation LaTeX par le bot lui-même #383

Interprétation LaTeX par le bot lui-même

Interprétation LaTeX par le bot lui-même #383

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Cache node modules
uses: actions/cache@v3
id: cache
env:
cache-name: cache-node-modules
with:
path: ./node_modules/
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-
- name: Install Node v18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Run ESLint
run: npm run lint