diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index ebb4b6a..19b433a 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -29,10 +29,3 @@ jobs: gradle-version: 6.5 build-root-directory: __tests__/data/basic arguments: help - - name: Check for uncommitted changes - # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. - run: | - git diff --exit-code --stat -- . ':!node_modules' \ - || (echo "##[error] found changed files after build. please 'npm run all'" \ - "and check in all changes" \ - && exit 1) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 089cd7a..500e400 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -28,10 +28,3 @@ jobs: gradle-version: 6.5 build-root-directory: __tests__/data/basic arguments: help - - name: Check for uncommitted changes - # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. - run: | - git diff --exit-code --stat -- . ':!node_modules' \ - || (echo "##[error] found changed files after build. please 'npm run all'" \ - "and check in all changes" \ - && exit 1)