Skip to content

Commit 3020a11

Browse files
committed
reduce timeout errors
1 parent f81e681 commit 3020a11

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/build_reusable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
- run: turbo run get-test-timings -- --build ${{ github.sha }}
172172

173173
- run: /bin/bash -c "${{ inputs.afterBuild }}"
174-
timeout-minutes: 15
174+
timeout-minutes: 20
175175

176176
- name: Upload artifact
177177
uses: actions/upload-artifact@v4

test/development/basic/hmr.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ import { NextConfig } from 'next'
1919

2020
describe.each([
2121
{ basePath: '', assetPrefix: '' },
22-
{ basePath: '', assetPrefix: '/asset-prefix' },
2322
{ 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' },
2527
])('basic HMR, nextConfig: %o', (nextConfig: Partial<NextConfig>) => {
2628
const { basePath } = nextConfig
2729
let next: NextInstance

0 commit comments

Comments
 (0)