From abbfd9b43d8b861679b85d4d8815b9beb76c1aa6 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Mon, 16 Dec 2024 10:39:25 -0500 Subject: [PATCH] remove eslint from gh actions --- .github/workflows/client_tests.js.yml | 2 +- .github/workflows/ssr_tests.js.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/client_tests.js.yml b/.github/workflows/client_tests.js.yml index 136318b32..0ae6f75a2 100644 --- a/.github/workflows/client_tests.js.yml +++ b/.github/workflows/client_tests.js.yml @@ -29,7 +29,7 @@ jobs: - name: Install dependencies run: npm ci - name: Lint - run: npm run prettier && npm run lint + run: npm run prettier - name: Build run: npm run build - name: Install Playwright diff --git a/.github/workflows/ssr_tests.js.yml b/.github/workflows/ssr_tests.js.yml index 10b9dc248..f8785e659 100644 --- a/.github/workflows/ssr_tests.js.yml +++ b/.github/workflows/ssr_tests.js.yml @@ -27,7 +27,7 @@ jobs: run: npm ci # Just lint here too. Save some GH Action minutes and not need to use "depends_on" or anything. - name: Lint - run: npm run prettier && npm run lint + run: npm run prettier - name: Build run: npm run build