We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6592567 commit 2886019Copy full SHA for 2886019
1 file changed
scripts/check-node-modules.sh
@@ -1,4 +1,10 @@
1
#!/bin/bash
2
+
3
+# Check if running in GitHub Actions
4
+if [ "$GITHUB_ACTIONS" = "true" ]; then
5
+ exit 0
6
+fi
7
8
set -e
9
10
# Check if npm install is likely needed before proceeding
0 commit comments