From b35e929b1d377a9ce44a6a44ed88e883938068a8 Mon Sep 17 00:00:00 2001 From: Paul Merlin Date: Sun, 14 Jun 2020 12:36:06 +0200 Subject: [PATCH] Simplify CI --- .github/workflows/dev.yml | 7 ------- .github/workflows/prod.yml | 7 ------- 2 files changed, 14 deletions(-) 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)