diff options
| author | XhmikosR <[email protected]> | 2019-10-08 08:47:40 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-10-14 12:12:05 +0300 |
| commit | be452a0ed3008f07a0aaf2bfffaaa13a8014e926 (patch) | |
| tree | 0915f4fa30f7e7c52cedc9613b563c9282571f52 | |
| parent | 23a78f0ab1f3bdca68b1208640e73d88c6be47eb (diff) | |
| download | bootstrap-be452a0ed3008f07a0aaf2bfffaaa13a8014e926.tar.xz bootstrap-be452a0ed3008f07a0aaf2bfffaaa13a8014e926.zip | |
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.
| -rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 71fa94351..d7dc4708c 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 |
