Skip to content

Commit 8b054f7

Browse files
committed
asd
1 parent 415161e commit 8b054f7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,20 @@ jobs:
2121
uses: actions/checkout@v2
2222

2323
- name: cd into apps/frontend
24-
run: cd ./apps/frontend
24+
run: |
25+
cd ./apps/frontend
26+
27+
- name: ls?
28+
run: |
29+
ls
2530
2631
- name: Set up .env
2732
run: |
2833
echo 'NEXT_PUBLIC_QUESTION_SERVICE_URL="http://localhost:8080/"
2934
NEXT_PUBLIC_USER_SERVICE_URL="http://localhost:3001/"
3035
NEXT_PUBLIC_MATCHING_SERVICE_URL="ws://localhost:8081/match"
3136
NEXT_PUBLIC_SIGNALLING_SERVICE_URL="ws://localhost:4444/"
32-
NEXT_PUBLIC_HISTORY_SERVICE_URL="http://localhost:8082/"' > newfile.env
37+
NEXT_PUBLIC_HISTORY_SERVICE_URL="http://localhost:8082/"' > .env
3338
3439
3540
- name: Set up Node.js

0 commit comments

Comments
 (0)