You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
I'd suggest taking the 'version' workflow out of the PR, because for example:
1. master branch is at version 1.0.1
2. person A makes a fork/branch, does his work and bumps the version on his repo to v1.0.2
3. person B makes a fork/branch, does his work and bumps the version on his repo to v1.0.2
4. person B issues a PR
5. PR is merged, master branch is now at v1.0.2
6. person A issues a PR <- now the versioning is stuffed
[11:25]
you'd probably want to bump the version AFTER every merged PR, rather than as part of the PR
[11:25]
because there's no guarantee in relation to the "order of merging"```
CI Tasks
When a PR is pushed to the Shell repo
grunt testShell
, in thetest/
folder)..version
file and apply it to the"version"
object key in thepackage.json
file.git tag -a vX -m "Version X"
where "X" is the version number pulled from the.version
file.When a PR is merged to the
master
branchnpm publish
.git push origin [tagname]
.Travis is a good option I think: https://travis-ci.org/.
The text was updated successfully, but these errors were encountered: