Skip to content

Commit bba6a5e

Browse files
committed
feat(rslib): add lynx-stack
1 parent f79c3d0 commit bba6a5e

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

tests/rslib/lynx-stack.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import type { RunOptions } from '../../types';
2+
import { runInRepo } from '../../utils';
3+
4+
export async function test(options: RunOptions) {
5+
await runInRepo({
6+
...options,
7+
repo: 'lynx-family/lynx-stack',
8+
branch: process.env.LYNX_STACK_REF ?? 'main',
9+
build: 'pnpm turbo build',
10+
// TODO(colinaaa): enable Lynx for Web tests
11+
test: 'test',
12+
});
13+
}

0 commit comments

Comments
 (0)