From b4e58139e36cbfeaa10e44046747838b982d6e5b Mon Sep 17 00:00:00 2001 From: thecodrr Date: Wed, 19 Jan 2022 17:34:29 +0500 Subject: [PATCH] ci: do not build before running tests --- .github/workflows/enex-tests.yml | 6 ++---- .github/workflows/importer-tests.yml | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/enex-tests.yml b/.github/workflows/enex-tests.yml index 6ea49da27..830ef133d 100644 --- a/.github/workflows/enex-tests.yml +++ b/.github/workflows/enex-tests.yml @@ -27,8 +27,6 @@ jobs: with: node-version: 16.x - run: | - npm i - npx turbo run build cd packages/enex - - name: Run tests - run: npm run test + npm i + npm run test diff --git a/.github/workflows/importer-tests.yml b/.github/workflows/importer-tests.yml index 705b02bf4..274c93647 100644 --- a/.github/workflows/importer-tests.yml +++ b/.github/workflows/importer-tests.yml @@ -27,8 +27,6 @@ jobs: with: node-version: 16.x - run: | - npm i - npx turbo run build cd packages/importer - - name: Run tests - run: npm run test + npm i + npm run test