Skip to content

Commit fb57849

Browse files
authored
Add changeset for SDK and CLI release (#463)
1 parent eaf3ed9 commit fb57849

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

.changeset/release-sdk-cli.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@executor-js/sdk": patch
3+
"executor": patch
4+
---
5+
6+
Release the SDK packages and CLI.

tests/release-bootstrap-smoke.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ describe("release bootstrap smoke", () => {
107107
const assetPath = join(distDir, assetName);
108108
const tempRoot = await mkdtemp(join(tmpdir(), "executor-release-bootstrap-"));
109109
const installedPackageDir = join(tempRoot, "executor");
110+
const dataDir = join(tempRoot, "data");
110111

111112
await cp(wrapperDir, installedPackageDir, { recursive: true });
112113

@@ -179,6 +180,10 @@ describe("release bootstrap smoke", () => {
179180
[join(installedPackageDir, "bin", "executor"), "web", "--port", String(webPort)],
180181
{
181182
cwd: installedPackageDir,
183+
env: {
184+
...process.env,
185+
EXECUTOR_DATA_DIR: dataDir,
186+
},
182187
stdio: ["ignore", "pipe", "pipe"],
183188
},
184189
);

0 commit comments

Comments
 (0)