File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171
171
- run : turbo run get-test-timings -- --build ${{ github.sha }}
172
172
173
173
- run : /bin/bash -c "${{ inputs.afterBuild }}"
174
- timeout-minutes : 15
174
+ timeout-minutes : 20
175
175
176
176
- name : Upload artifact
177
177
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -19,9 +19,11 @@ import { NextConfig } from 'next'
19
19
20
20
describe . each ( [
21
21
{ basePath : '' , assetPrefix : '' } ,
22
- { basePath : '' , assetPrefix : '/asset-prefix' } ,
23
22
{ basePath : '/docs' , assetPrefix : '' } ,
24
- { basePath : '/docs' , assetPrefix : '/asset-prefix' } ,
23
+ // this is a long running test reduce runtime by
24
+ // only running on main cases above
25
+ // { basePath: '', assetPrefix: '/asset-prefix' },
26
+ // { basePath: '/docs', assetPrefix: '/asset-prefix' },
25
27
] ) ( 'basic HMR, nextConfig: %o' , ( nextConfig : Partial < NextConfig > ) => {
26
28
const { basePath } = nextConfig
27
29
let next : NextInstance
You can’t perform that action at this time.
0 commit comments