This repository has been archived by the owner on Jul 6, 2022. It is now read-only.
-
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
Shivam Agrawal
authored and
Shivam Agrawal
committed
Jul 24, 2019
1 parent
fdb35f4
commit bf9c97d
Showing
5 changed files
with
14,155 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
language: node_js | ||
node_js: | ||
- '10' | ||
before_install: | ||
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.15.2 | ||
- export PATH="$HOME/.yarn/bin:$PATH" | ||
- export NODE_OPTIONS=--max_old_space_size=4096 | ||
|
||
jobs: | ||
include: | ||
- stage: release | ||
node_js: lts/* | ||
script: | ||
- yarn run build:ci | ||
- npm run semantic-release |
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 @@ | ||
module.exports = {extends: ['@commitlint/config-conventional']}; |
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
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,34 @@ | ||
module.exports = { | ||
repositoryUrl: 'https://github.com/PolymathNetwork/polymath-ui.git', | ||
branches: [ | ||
'master', | ||
{ | ||
channel: 'beta', | ||
type: 'prerelease', | ||
name: 'develop', | ||
prerelease: 'beta', | ||
}, | ||
], | ||
/** | ||
* In this order the **prepare** step of @semantic-release/npm will run first | ||
* followed by @semantic-release/git: | ||
* - Update the package.json version and create the npm package tarball | ||
* - Push a release commit and tag, including configurable files | ||
* | ||
* See: | ||
* - https://github.com/semantic-release/semantic-release/blob/beta/docs/usage/plugins.md#plugin-ordering | ||
* - https://github.com/semantic-release/semantic-release/blob/beta/docs/extending/plugins-list.md | ||
*/ | ||
plugins: [ | ||
'@semantic-release/commit-analyzer', | ||
'@semantic-release/release-notes-generator', | ||
[ | ||
'@semantic-release/npm', | ||
{ | ||
tarballDir: 'npm-package/', | ||
}, | ||
], | ||
'@semantic-release/git', | ||
'@semantic-release/github', | ||
], | ||
}; |
Oops, something went wrong.