Skip to content

Commit 8f33ee6

Browse files
committed
fix(): github actions
1 parent f1519f5 commit 8f33ee6

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/label-issue.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,13 @@ jobs:
2828
- name: checkout
2929
uses: actions/checkout@v2
3030

31+
- name: Setup pnpm
32+
uses: pnpm/action-setup@v4
33+
with:
34+
version: 10
35+
3136
- name: Install dependencies
32-
run: npm i @actions/core @actions/github
37+
run: pnpm add @actions/core @actions/github
3338

3439
- name: Add labels
3540
uses: ./.github/github-action/

apps/forms/61-simplest-signal-form/vitest-base.config.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ export default defineConfig({
88
setupFiles: [
99
'apps/forms/61-simplest-signal-form/src/test-setup/no-teardown.ts',
1010
],
11-
testTimeout: 3_000,
11+
// testTimeout: 3_000,
1212
browser: {
1313
enabled: true,
14-
provider: playwright(),
14+
provider: playwright({
15+
launchOptions: {
16+
args: ['--remote-debugging-port=9222'],
17+
},
18+
}),
1519
instances: [{ browser: 'chromium' }],
1620
},
1721
},

0 commit comments

Comments
 (0)