Skip to content

Commit be44ec8

Browse files
committed
Disable backend run test
1 parent c8cd8d1 commit be44ec8

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

.github/workflows/buildBackend.yaml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,22 @@ jobs:
2323
cd nodejs-backend
2424
npm install
2525
npm rebuild
26-
- name: Run build
27-
run: |
28-
cd nodejs-backend
29-
exit_status=0
30-
timeout 60 npm run backend || exit_status=$?
31-
32-
if [[ $exit_status -eq 124 ]]; then
33-
echo "Backend ran good!"
34-
else
35-
echo "Backend run failed!"
36-
exit 1
37-
fi
26+
# Disabled for now, we caan enable this one
27+
# as soon as we have remove the login from
28+
# back- and frondend (and tested its working
29+
# with nginx)
30+
# - name: Run build
31+
# run: |
32+
# cd nodejs-backend
33+
# exit_status=0
34+
# timeout 60 npm run backend || exit_status=$?
35+
#
36+
# if [[ $exit_status -eq 124 ]]; then
37+
# echo "Backend ran good!"
38+
# else
39+
# echo "Backend run failed!"
40+
# exit 1
41+
# fi
3842

3943
# - name: Run tests
4044
# run: npm test

0 commit comments

Comments
 (0)