Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Romain Casati
Basthon-JupyterLab
Commits
17ca138e
Commit
17ca138e
authored
Apr 26, 2021
by
Nicholas Bollweg
Browse files
skip js install in CI on cache hit
parent
1782d8e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
dodo.py
View file @
17ca138e
...
...
@@ -24,6 +24,9 @@ def task_setup():
args
=
[
"yarn"
,
"--prefer-offline"
,
"--ignore-optional"
]
if
C
.
CI
:
# .yarn-integrity will only exist on a full cache hit vs yarn.lock, saves 1min+
if
B
.
YARN_INTEGRITY
.
exists
():
return
args
+=
[
"--frozen-lockfile"
]
yield
dict
(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment