Skip to content

Commit 5fd10b5

Browse files
committed
ci: debug
1 parent db8e886 commit 5fd10b5

File tree

3 files changed

+21
-18
lines changed

3 files changed

+21
-18
lines changed

.github/workflows/ci-rsc.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,19 @@ jobs:
3535
runs-on: ${{ matrix.os }}
3636
strategy:
3737
matrix:
38-
os: [ubuntu-latest, macos-latest, windows-latest]
38+
os: [windows-latest]
3939
browser: [chromium]
40+
# os: [ubuntu-latest, macos-latest, windows-latest]
41+
# browser: [chromium]
4042
rolldown: [false]
41-
include:
42-
- os: ubuntu-latest
43-
browser: firefox
44-
- os: macos-latest
45-
browser: webkit
46-
- os: ubuntu-latest
47-
browser: chromium
48-
rolldown: true
43+
# include:
44+
# - os: ubuntu-latest
45+
# browser: firefox
46+
# - os: macos-latest
47+
# browser: webkit
48+
# - os: ubuntu-latest
49+
# browser: chromium
50+
# rolldown: true
4951
fail-fast: false
5052
steps:
5153
- uses: actions/checkout@v4

packages/plugin-rsc/e2e/basic.test.ts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -107,16 +107,17 @@ test.describe.configure({ mode: 'serial' })
107107

108108
test.describe.only(() => {
109109
// disabled by default
110-
if (process.env.TEST_ISOLATED !== 'true') return
110+
// if (process.env.TEST_ISOLATED !== 'true') return
111111

112112
let tmpRoot = '/tmp/test-vite-rsc'
113113
test.beforeAll(async () => {
114-
try {
115-
await setupIsolatedFixture({ src: 'examples/basic', dest: tmpRoot })
116-
} catch (e) {
117-
console.error('[setupIsolatedFixture]', e)
118-
throw e
119-
}
114+
await setupIsolatedFixture({ src: 'examples/basic', dest: tmpRoot })
115+
// try {
116+
// await setupIsolatedFixture({ src: 'examples/basic', dest: tmpRoot })
117+
// } catch (e) {
118+
// console.error('[setupIsolatedFixture]', e)
119+
// throw e
120+
// }
120121
})
121122

122123
test.describe('dev-isolated', () => {

packages/plugin-rsc/e2e/fixture.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export async function setupIsolatedFixture(options: {
170170
})
171171

172172
// install
173-
console.log('[setupIsolatedFixture] before pnpm')
173+
console.error('[setupIsolatedFixture] before pnpm')
174174
// await x('pnpm', ['i'], {
175175
// throwOnError: true,
176176
// nodeOptions: {
@@ -183,7 +183,7 @@ export async function setupIsolatedFixture(options: {
183183
// ],
184184
// },
185185
// })
186-
console.log('[setupIsolatedFixture] after pnpm')
186+
console.error('[setupIsolatedFixture] after pnpm')
187187
}
188188

189189
function editFileJson(filepath: string, edit: (s: string) => string) {

0 commit comments

Comments
 (0)