build: add support for automated minor releases (#20620)

* build: add support for automated minor releases

* Add test for minor bump
This commit is contained in:
John Kleinschmidt 2019-10-23 14:07:10 -04:00 committed by Samuel Attard
parent f5e5bcd943
commit 467409458e
3 changed files with 10 additions and 1 deletions

View file

@ -100,6 +100,12 @@ describe('version-bumper', () => {
expect(next).to.equal('2.0.1')
})
it('bumps to minor from stable', async () => {
const version = 'v2.0.0'
const next = await nextVersion('minor', version)
expect(next).to.equal('2.1.0')
})
it('bumps to stable from nightly', async () => {
const version = 'v2.0.0-nightly.19950901'
const next = await nextVersion('stable', version)