Commit 96562ee 1 parent 7ad2cad commit 96562ee Copy full SHA for 96562ee
File tree 6 files changed +37
-0
lines changed
explorer/frontend/scripts
6 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ex
4
+
5
+ npm run build
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ex
4
+
5
+ npm run lint
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ex
4
+
5
+ # generate version.txt to be used in publishing
6
+ echo $( npm run version --silent) > version.txt
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ex
4
+
5
+ npm install
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -ex
4
+
5
+ if [ " $1 " = " code-coverage" ];
6
+ then
7
+ npm run test:jenkins:cov
8
+ cd $( git rev-parse --show-toplevel) /explorer/frontend
9
+ mkdir -p .nyc_output && cp ./coverage/coverage-final.json ./.nyc_output
10
+ else
11
+ npm run test:jenkins
12
+ fi
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+
3
+ npm run build
4
+ serve -s build
You can’t perform that action at this time.
0 commit comments