Skip to content

Commit 1b37ca7

Browse files
committed
run build instead of dev
1 parent 5eefcc1 commit 1b37ca7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/run_tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ jobs:
1515
fetch-depth: 0
1616
- name: Install dependencies
1717
run: npm ci
18+
- name: Build
19+
run: npm run build
1820
- name: Start gateway and run tests
1921
run: |
20-
npm run dev &
22+
npm run build/start-server.js &
2123
echo "Waiting for gateway to start..."
2224
while ! curl -s http://localhost:8787 > /dev/null; do
2325
sleep 1

0 commit comments

Comments
 (0)