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 6592567 commit b27a8efCopy full SHA for b27a8ef
scripts/check-node-modules.sh
@@ -1,6 +1,12 @@
1
#!/bin/bash
2
+
3
set -e
4
5
+# Check if running in GitHub Actions
6
+if [ "$GITHUB_ACTIONS" = "true" ]; then
7
+ exit 0
8
+fi
9
10
# Check if npm install is likely needed before proceeding
11
if [ ! -d node_modules ] || [ package-lock.json -nt node_modules/.package-lock.json ]; then
12
npm install
0 commit comments