-
Notifications
You must be signed in to change notification settings - Fork 28
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
79eaab9
commit 0268a05
Showing
2 changed files
with
78 additions
and
3 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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
# If the tests pass and this is a push to the master branch it also runs Semantic Release. | ||
name: CI | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
init: | ||
name: init | ||
|
@@ -133,12 +134,11 @@ jobs: | |
|
||
- name: Multi-semantic-release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GH_USER: 'qiwibot' | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
GIT_AUTHOR_EMAIL: '[email protected]' | ||
GIT_COMMITTER_EMAIL: '[email protected]' | ||
GIT_AUTHOR_NAME: '@qiwibot' | ||
GIT_COMMITTER_NAME: '@qiwibot' | ||
run: GH_TOKEN="$GH_TOKEN" GH_USER="$GH_USER" NPM_TOKEN="$NPM_TOKEN" GIT_AUTHOR_EMAIL="$GIT_AUTHOR_EMAIL" GIT_COMMITTER_EMAIL="$GIT_COMMITTER_EMAIL" GIT_AUTHOR_NAME="$GIT_AUTHOR_NAME" GIT_COMMITTER_NAME="$GIT_COMMITTER_NAME" npx -p @qiwi/semrel-toolkit multi-semrel | ||
run: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
language: node_js | ||
node_js: 14 | ||
install: skip | ||
cache: yarn | ||
|
||
os: linux | ||
dist: focal | ||
|
||
branches: | ||
except: | ||
- docs | ||
- gh-pages | ||
|
||
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 | ||
- &build | ||
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 | ||
|
||
- &test | ||
if: branch = master AND type = pull_request AND env(CI_TEST) != false | ||
stage: test | ||
script: yarn test | ||
workspaces: | ||
use: linux-shared | ||
|
||
- <<: *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 | ||
|
||
- 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 |