From c0ec406b2a89913ceec10fdeba6e0c92359b6f9e Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Wed, 20 Oct 2021 15:56:40 +0300 Subject: [PATCH] chore(workflow): disable 'Run Unit Tests' step for web --- .github/workflows/build.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3fac785..dcf251a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,7 @@ jobs: run: npm run lint-api - name: Check Web Code Style run: npm run lint-web + build-api: runs-on: ubuntu-latest @@ -48,6 +49,7 @@ jobs: run: npm run build env: CI: true + build-web: runs-on: ubuntu-latest @@ -64,9 +66,10 @@ jobs: - name: Install Dependencies working-directory: ./web run: npm ci - - name: Run Unit Tests - working-directory: ./web - run: npm test + # TODO: Uncomment next step when unit tests provided + # - name: Run Unit Tests + # working-directory: ./web + # run: npm test - name: Build Package working-directory: ./web run: npm run build