Skip to content

Commit 18b90f6

Browse files
committed
debug macos issue
1 parent e34c63a commit 18b90f6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/Test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
test:
1616
runs-on: ${{ matrix.os }}
17-
timeout-minutes: 20
17+
timeout-minutes: 30
1818

1919
strategy:
2020
fail-fast: false

src/setup_build.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ function get_build_dir()
1818
build_node(@get_scratch!("build_dir3"))
1919
end
2020

21+
ci() = get(ENV, "CI", "neetjes") != "neetjes"
2122

2223
function build_node(dir)
2324
@info "PlutoPDF: Running npm install in scratch space..."
@@ -30,7 +31,7 @@ function build_node(dir)
3031

3132
cd(dir) do
3233
run(`$npm --version`)
33-
run(`$npm install`)
34+
run(ci() ? `$npm install --verbose` : `$npm install`)
3435
end
3536

3637
dir

0 commit comments

Comments
 (0)