Skip to content

Commit

Permalink
ci temp dir
Browse files Browse the repository at this point in the history
  • Loading branch information
jinmayamashita committed Jun 2, 2024
1 parent 65d88c1 commit dc7f22c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/start-frontend/__tests__/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ const KEY = {
SPACE: "\x20",
};

const TEST_DIR = execSync("mktemp -d -t my-test").toString("utf-8");
const TEST_DIR =
// eslint-disable-next-line turbo/no-undeclared-env-vars
process.env.RUNNER_TEMP || execSync("mktemp -d -t my-test").toString("utf-8");
const exe = util.promisify(execFile);

async function cleanupTestDir() {
Expand Down

0 comments on commit dc7f22c

Please sign in to comment.