✅ Add routing integration tests #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Copy .env file | |
working-directory: .devcontainer | |
run: cp config/app/.env.example .env | |
- name: Start dev container and test | |
uses: devcontainers/ci@v0.3 | |
with: | |
configFile: .devcontainer/devcontainer.json | |
runCmd: | | |
cd /roots/app | |
composer install | |
while ! mysqladmin ping -h"database" --silent; do | |
sleep 1 | |
done | |
wp core install --url=http://web:8080 --title=Acorn --admin_user=admin --admin_password=admin --admin_email=admin@example.com --skip-email --allow-root | |
composer run-script test tests/Integration/Routing | |
- name: Verify routes | |
run: | | |
curl -s http://localhost:8080/test/ | grep "Howdy" |