From 119cb0c69f984fee5aca3e2d9a1120d04784609d Mon Sep 17 00:00:00 2001 From: Brian Cristante <33549821+brcrista@users.noreply.github.com> Date: Thu, 5 Aug 2021 14:50:06 -0400 Subject: [PATCH] Remove check dist step from workflow.yml --- .github/workflows/workflow.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 460d7dd..a5dd3b7 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -47,17 +47,6 @@ jobs: run: npm run lint - name: Build & Test run: npm run test - - name: Ensure dist/ folder is up-to-date - if: ${{ runner.os == 'Linux' }} - shell: bash - run: | - npm run build - if [ "$(git diff --ignore-space-at-eol | wc -l)" -gt "0" ]; then - echo "Detected uncommitted changes after build. See status below:" - git diff - exit 1 - fi - # End to end save and restore test-save: