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 f79c3d0 commit bba6a5eCopy full SHA for bba6a5e
1 file changed
tests/rslib/lynx-stack.ts
@@ -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