We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415161e commit 8b054f7Copy full SHA for 8b054f7
.github/workflows/test.yml
@@ -21,15 +21,20 @@ jobs:
21
uses: actions/checkout@v2
22
23
- name: cd into apps/frontend
24
- run: cd ./apps/frontend
+ run: |
25
+ cd ./apps/frontend
26
+
27
+ - name: ls?
28
29
+ ls
30
31
- name: Set up .env
32
run: |
33
echo 'NEXT_PUBLIC_QUESTION_SERVICE_URL="http://localhost:8080/"
34
NEXT_PUBLIC_USER_SERVICE_URL="http://localhost:3001/"
35
NEXT_PUBLIC_MATCHING_SERVICE_URL="ws://localhost:8081/match"
36
NEXT_PUBLIC_SIGNALLING_SERVICE_URL="ws://localhost:4444/"
- NEXT_PUBLIC_HISTORY_SERVICE_URL="http://localhost:8082/"' > newfile.env
37
+ NEXT_PUBLIC_HISTORY_SERVICE_URL="http://localhost:8082/"' > .env
38
39
40
- name: Set up Node.js
0 commit comments