-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
158a85e
commit 91bfb8f
Showing
2 changed files
with
68 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,69 @@ | ||
dist: xenial | ||
language: node_js | ||
node_js: | ||
- '16' | ||
node_js: 16 | ||
install: skip | ||
cache: yarn | ||
|
||
cache: | ||
directories: | ||
- node_modules | ||
os: linux | ||
dist: focal | ||
|
||
before_script: | ||
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter | ||
- chmod +x ./cc-test-reporter | ||
- ./cc-test-reporter before-build | ||
jobs: | ||
fast_finish: true | ||
include: | ||
- stage: verify | ||
if: branch != master AND type != pull_request | ||
install: | ||
- yarn | ||
- yarn bootstrap | ||
script: | ||
- yarn build | ||
- if [ "$CI_TEST" != "false" ]; then | ||
yarn test; | ||
fi | ||
- if: branch = master | ||
stage: build | ||
install: | ||
- yarn | ||
- yarn bootstrap | ||
script: | ||
- yarn build | ||
# https://docs.travis-ci.com/user/using-workspaces/ | ||
workspaces: | ||
create: | ||
name: linux-shared | ||
paths: | ||
- node_modules | ||
- packages | ||
|
||
after_script: | ||
- ./cc-test-reporter format-coverage -t lcov ./coverage/lcov.info | ||
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT | ||
- &test | ||
if: branch = master AND type = pull_request AND env(CI_TEST) != false | ||
stage: test | ||
script: yarn test | ||
workspaces: | ||
use: linux-shared | ||
- <<: *test | ||
node_js: 14 | ||
- <<: *test | ||
if: branch = master AND type != pull_request AND env(CI_TEST) != false | ||
before_script: | ||
- if [ "$CC_TEST_REPORTER_ID" != "" ]; then | ||
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter; | ||
chmod +x ./cc-test-reporter; | ||
./cc-test-reporter before-build; | ||
fi | ||
script: | ||
- if [ "$CC_TEST_REPORTER_ID" != "" ]; then | ||
yarn test:report; | ||
else | ||
yarn test; | ||
fi | ||
after_script: | ||
- if [ "$CC_TEST_REPORTER_ID" != "" ]; then | ||
./cc-test-reporter format-coverage -t lcov ./coverage/lcov.info; | ||
./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; | ||
fi | ||
|
||
install: | ||
- yarn | ||
- yarn run bootstrap | ||
- yarn run build | ||
|
||
script: | ||
- yarn test:report | ||
|
||
deploy: | ||
provider: script | ||
skip_cleanup: true | ||
script: | ||
- npx -p @qiwi/semrel-toolkit multi-semrel | ||
- stage: release | ||
if: branch = master AND type != pull_request AND env(CI_RELEASE) = true | ||
workspaces: | ||
use: linux-shared | ||
script: npx -p @qiwi/semrel-toolkit multi-semrel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters