Skip to content

Commit a6e1b45

Browse files
author
Andrea Barbasso
committed
[DEV-1727] exclude Verify SSR step in github pipeline
1 parent 1e322a8 commit a6e1b45

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,11 +172,12 @@ jobs:
172172
# Get homepage and verify that the <meta name="title"> tag includes "DSpace".
173173
# If it does, then SSR is working, as this tag is created by our MetadataService.
174174
# This step also prints entire HTML of homepage for easier debugging if grep fails.
175-
- name: Verify SSR (server-side rendering)
176-
run: |
177-
result=$(wget -O- -q http://127.0.0.1:4000/home)
178-
echo "$result"
179-
echo "$result" | grep -oE "<meta name=\"title\" [^>]*>" | grep DSpace
175+
# TODO: enable this step once we have a CRIS back end to test against
176+
# - name: Verify SSR (server-side rendering)
177+
# run: |
178+
# result=$(wget -O- -q http://127.0.0.1:4000/home)
179+
# echo "$result"
180+
# echo "$result" | grep -oE "<meta name=\"title\" [^>]*>" | grep DSpace
180181

181182
- name: Stop running app
182183
run: kill -9 $(lsof -t -i:4000)

0 commit comments

Comments
 (0)