File tree Expand file tree Collapse file tree
apps/forms/61-simplest-signal-form Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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/
Original file line number Diff line number Diff 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 } ,
You can’t perform that action at this time.
0 commit comments