mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
ci: increase node timeout (#10089)
This commit is contained in:
parent
dac759798c
commit
a006d44993
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ import arg from 'arg';
|
|||
import glob from 'tiny-glob';
|
||||
|
||||
const isCI = !!process.env.CI;
|
||||
const defaultTimeout = isCI ? 900000 : 600000;
|
||||
const defaultTimeout = isCI ? 1200000 : 600000;
|
||||
|
||||
export default async function test() {
|
||||
const args = arg({
|
||||
|
|
Loading…
Reference in a new issue