From 1c5abde94f1821aa7d56a4774dc0be5142ed9a02 Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Fri, 31 May 2024 12:32:18 +0200 Subject: [PATCH] Set CI=true in all workflows As all the warnings on the build are now fixed (thx to #430), we no longer need to set `CI=false` to actively suppress warnings to be picked up by our CI tests. This should help with us not introducing new warnings. --- .github/workflows/deploy-main.yml | 2 -- .github/workflows/deploy-test.yml | 3 +-- .github/workflows/test.yml | 2 -- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/deploy-main.yml b/.github/workflows/deploy-main.yml index 905131d317..d49750fc01 100644 --- a/.github/workflows/deploy-main.yml +++ b/.github/workflows/deploy-main.yml @@ -22,8 +22,6 @@ jobs: run: npm ci - name: build project - env: - CI: false run: npm run build - name: create pages directory diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index 7550ff796b..ed8e29f04d 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -29,10 +29,9 @@ jobs: run: npm ci - name: build app - run: npm run build env: PUBLIC_URL: /${{ steps.build-path.outputs.build }} - CI: false + run: npm run build - name: prepare git run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f539507aa0..b0982d16f0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,6 +22,4 @@ jobs: run: npm ci - name: build project - env: - CI: false run: npm run build