Archived
1
0

feat: publish beta and development tags on npm (#4769)

* feat: add logic to publish beta/dev npm

This adds new log to publish the npm package both while working on PRs and when
PRs are merged into main, allowing us to easily test changes in a
production-like setting.

Co-authored-by: Asher <ash@coder.com>
This commit is contained in:
Joe Previte
2022-01-21 16:28:56 -07:00
committed by GitHub
parent 63f99da087
commit a2f530161f
6 changed files with 133 additions and 11 deletions

View File

@ -14,7 +14,7 @@ describe("settings", () => {
testDir = await tmpdir(testName)
})
describe("with invalid JSON in settings file", () => {
let mockSettingsFile = "coder.json"
const mockSettingsFile = "coder.json"
let pathToMockSettingsFile = ""
beforeEach(async () => {
@ -33,7 +33,7 @@ describe("settings", () => {
})
})
describe("with invalid settings file path", () => {
let mockSettingsFile = "nonExistent.json"
const mockSettingsFile = "nonExistent.json"
let pathToMockSettingsFile = ""
beforeEach(async () => {