From 73f0784ed13e17c95f242ded90a6cc0c2a553bbc Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Thu, 28 Sep 2023 16:15:25 -0700 Subject: [PATCH] Skip linting again during tests This adds time and, since we lint in a separate step is a waste. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 63be1d1017..a6890a7316 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: - name: Install Dependencies run: npm ci - name: Run Tests - run: npm test + run: npm run test:ember build: name: Build @@ -105,7 +105,7 @@ jobs: node-version: 18.7 cache: npm - run: npm ci - - run: npm test + - run: npm run test:ember build-with-embroider: name: Build With Embroider