Skip to content

Com 3849

Com 3849 #730

Workflow file for this run

name: Test ESLint et Typesript
on:
- pull_request
jobs:
build:
name: Run ESLint and Typescript test
runs-on: ubuntu-latest
steps:
# Check out the repository
- uses: actions/checkout@v3
# Install Node.js
- uses: actions/setup-node@v3
with:
node-version: 20.18.0
# Install your dependencies
- run: yarn install --frozen-lockfile --ignore-scripts
# Run ESLint + Ts
- run: yarn ts-lint