From cfb9226aefc0f2315929b56f1a9788917a9ca007 Mon Sep 17 00:00:00 2001 From: nicolas Date: Wed, 21 Jun 2023 08:59:39 +0200 Subject: [PATCH] check that code is linted in github actions --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 995a423..5c019cd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,6 +8,8 @@ jobs: - uses: actions/checkout@v2 with: submodules: true + - name: check that code is linted + run: yarn eslint.check - name: Setup env variables run: cp .env.dist .env - name: Install modules