We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703169c commit 5eeb8baCopy full SHA for 5eeb8ba
.build/build.sh
@@ -23,8 +23,11 @@ echo "Installing node version $nodeVersion"
23
nvm install $nodeVersion
24
echo "npm ci"
25
npm ci
26
+# Unshallow on CI system for complete blame info
27
+if [[ "$CI" == "true" ]]; then
28
echo "git fetch --unshallow"
29
git fetch --unshallow
30
+fi
31
echo "npm run compile"
32
npm run compile
33
echo "npm run coverage"
0 commit comments