We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c731ada commit e99feddCopy full SHA for e99fedd
packages/plugin-rsc/e2e/basic.test.ts
@@ -111,7 +111,12 @@ test.describe.only(() => {
111
// disabled by default
112
// if (process.env.TEST_ISOLATED !== 'true') return
113
114
- let tmpRoot = path.join(os.tmpdir(), 'test-vite-rsc')
+ // RUNNER_TEMP is for Github Actions
115
+ // https://github.com/actions/toolkit/issues/518
116
+ const tmpRoot = path.join(
117
+ process.env['RUNNER_TEMP'] || os.tmpdir(),
118
+ 'test-vite-rsc',
119
+ )
120
test.beforeAll(async () => {
121
console.error('[beforeAll]')
122
await setupIsolatedFixture({ src: 'examples/basic', dest: tmpRoot })
0 commit comments