From 65a57acff69ae8d14743fe2fd2e36137a1c21e89 Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Wed, 20 Oct 2021 15:52:53 +0300 Subject: [PATCH] chore(workflow): remove code style check step from build jobs --- .github/workflows/build.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98b4d3e..3fac785 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,9 +40,6 @@ jobs: - name: Install Dependencies working-directory: ./api run: npm ci - - name: Check Code Style - working-directory: ./api - run: npm run lint - name: Run Unit Tests working-directory: ./api run: npm test @@ -67,9 +64,6 @@ jobs: - name: Install Dependencies working-directory: ./web run: npm ci - - name: Check Code Style - working-directory: ./web - run: npm run lint - name: Run Unit Tests working-directory: ./web run: npm test