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.
ci
1 parent 7b67112 commit 1d03a59Copy full SHA for 1d03a59
package.json
@@ -6,6 +6,7 @@
6
"scripts": {
7
"BigRedButton": "scripts/BigRedButton",
8
"build": "scripts/build",
9
+ "ci": "scripts/ci",
10
"install": "scripts/install",
11
"start": "scripts/start",
12
"test": "scripts/test",
scripts/ci
@@ -0,0 +1,8 @@
1
+#!/usr/bin/env sh
2
+
3
+if [ "$SEMAPHORE_TRIGGER_SOURCE" = "scheduler" ]
4
+then
5
+ npm run update
+else
+ npm run BigRedButton
+fi
0 commit comments