From: XhmikosR Date: Tue, 8 Oct 2019 05:47:40 +0000 (+0300) Subject: CI: move `CI` env variable to the root of the workflow. (#29499) X-Git-Tag: v4.4.0~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be452a0ed3008f07a0aaf2bfffaaa13a8014e926;p=thirdparty%2Fbootstrap.git CI: move `CI` env variable to the root of the workflow. (#29499) This way we match the Travis CI behavior, and it's inherited by all steps. --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 71fa943519..d7dc4708cb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,7 @@ name: Tests on: [push, pull_request] +env: + CI: true jobs: run: @@ -39,8 +41,6 @@ jobs: - name: Install npm dependencies run: npm install - env: - CI: true - name: Install bundler dependencies run: bundle install --deployment --jobs=3 --retry=3 --clean