We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 885100e commit f89c716Copy full SHA for f89c716
vscode/asperheader/package_extension.sh
@@ -32,6 +32,13 @@ if [ $STATUS -ne 0 ]; then
32
echo "Pre-publishing step failed, se above for more details."
33
exit $STATUS
34
fi
35
+echo "Running tests..."
36
+npm run test
37
+STATUS=$?
38
+if [ $STATUS -ne 0 ]; then
39
+ echo "Test run failed, see above for more details."
40
+ exit $STATUS
41
+fi
42
echo "Running the intergrated vsce:package (if present)..."
43
npm run vsce:package
44
if [ $? -ne 0 ]; then
0 commit comments