From 9823246ecd8c76f4851aa5ec6d4e2bbef8d17e0e Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Fri, 21 Feb 2025 23:11:44 +0100 Subject: [PATCH] Add eslint check in the CI --- .github/workflows/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6bb8c0c5..03652b55 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,9 +3,6 @@ on: pull_request: merge_group: -env: - BROWSER_UI_TEST_VERSION: '0.19.0' - jobs: test: runs-on: ${{ matrix.os }} @@ -85,7 +82,9 @@ jobs: with: node-version: 20 - name: Install browser-ui-test - run: npm install browser-ui-test@"${BROWSER_UI_TEST_VERSION}" + run: npm install + - name: Run eslint + run: npm run lint - name: Build and run tests (+ GUI) run: cargo test --locked --target x86_64-unknown-linux-gnu --test gui