From 6ba173f186d230815a21b953c6c071cb8bb4de78 Mon Sep 17 00:00:00 2001 From: Leonardo Dino Date: Mon, 21 Sep 2020 00:26:47 +0100 Subject: [PATCH] Remove redundant CI=true from templates' github workflows (#870) - they're already set by default by GitHub: https://docs.github.com/en/actions/reference/environment-variables#default-environment-variables --- templates/basic/.github/workflows/main.yml | 8 -------- templates/react-with-storybook/.github/workflows/main.yml | 8 -------- templates/react/.github/workflows/main.yml | 8 -------- 3 files changed, 24 deletions(-) diff --git a/templates/basic/.github/workflows/main.yml b/templates/basic/.github/workflows/main.yml index 3ce3e4023..d40f0f8f6 100644 --- a/templates/basic/.github/workflows/main.yml +++ b/templates/basic/.github/workflows/main.yml @@ -23,20 +23,12 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile - env: - CI: true - name: Lint run: yarn lint - env: - CI: true - name: Test run: yarn test --ci --coverage --maxWorkers=2 - env: - CI: true - name: Build run: yarn build - env: - CI: true diff --git a/templates/react-with-storybook/.github/workflows/main.yml b/templates/react-with-storybook/.github/workflows/main.yml index 3ce3e4023..d40f0f8f6 100644 --- a/templates/react-with-storybook/.github/workflows/main.yml +++ b/templates/react-with-storybook/.github/workflows/main.yml @@ -23,20 +23,12 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile - env: - CI: true - name: Lint run: yarn lint - env: - CI: true - name: Test run: yarn test --ci --coverage --maxWorkers=2 - env: - CI: true - name: Build run: yarn build - env: - CI: true diff --git a/templates/react/.github/workflows/main.yml b/templates/react/.github/workflows/main.yml index 3ce3e4023..d40f0f8f6 100644 --- a/templates/react/.github/workflows/main.yml +++ b/templates/react/.github/workflows/main.yml @@ -23,20 +23,12 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile - env: - CI: true - name: Lint run: yarn lint - env: - CI: true - name: Test run: yarn test --ci --coverage --maxWorkers=2 - env: - CI: true - name: Build run: yarn build - env: - CI: true