From f8b532203185064ac486f0812e942b4148f5d7b3 Mon Sep 17 00:00:00 2001 From: nicolas Date: Wed, 21 Jun 2023 09:19:02 +0200 Subject: [PATCH] check that code is linted in github actions (2nd try) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5c019cd..df8dd00 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,12 +8,12 @@ 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 run: yarn + - name: check that the code is linted + run: yarn eslint.check - name: Build the react app run: yarn build - name: Run tests