Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
try to start api server
Browse files Browse the repository at this point in the history
  • Loading branch information
rylew1 committed Jun 6, 2024
1 parent b31616e commit 7a1cf39
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ci-frontend-a11y.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,22 @@ jobs:
- name: Start server and log output
run: npm run start &

- name: Wait for server to be ready
- name: Wait for frontend to be ready
run: |
# Ensure the server wait script is executable
chmod +x ./bin/wait-for-frontend.sh
./bin/wait-for-frontend.sh
- name: Start API Server for e2e tests
run: |
cd ../api
make init db-seed-local start &
cd ../frontend
# Ensure the API wait script is executable
chmod +x ../api/bin/wait-for-api.sh
../api/bin/wait-for-api.sh
shell: bash

- name: Run pa11y-ci
run: |
npm run test:pa11y
Expand Down

0 comments on commit 7a1cf39

Please sign in to comment.