ensure deps are installed
Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
This commit is contained in:
parent
73e61a023a
commit
9b107de721
|
|
@ -29,10 +29,19 @@ jobs:
|
||||||
- name: csi-sanity
|
- name: csi-sanity
|
||||||
run: |
|
run: |
|
||||||
export PATH="/usr/local/lib/nodejs/bin:${PATH}"
|
export PATH="/usr/local/lib/nodejs/bin:${PATH}"
|
||||||
|
# install deps
|
||||||
|
npm i
|
||||||
|
|
||||||
|
# generate key for paths etc
|
||||||
export CI_BUILD_KEY=$(uuidgen)
|
export CI_BUILD_KEY=$(uuidgen)
|
||||||
|
|
||||||
|
# launch the server
|
||||||
sudo -E ci/bin/launch-server.sh &
|
sudo -E ci/bin/launch-server.sh &
|
||||||
|
|
||||||
# wait for server to launch
|
# wait for server to launch
|
||||||
sleep 10
|
sleep 10
|
||||||
|
|
||||||
|
# launch csi-sanity
|
||||||
sudo -E ci/bin/launch-csi-sanity.sh
|
sudo -E ci/bin/launch-csi-sanity.sh
|
||||||
env:
|
env:
|
||||||
TEMPLATE_CONFIG_FILE: "./ci/configs/${{ matrix.config }}"
|
TEMPLATE_CONFIG_FILE: "./ci/configs/${{ matrix.config }}"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue