Merge pull request #69 from leung018/rename-to-routes #54
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
on: | |
push: | |
branches: | |
- main | |
name: End-to-End Tests # TODO: Perhaps optimize by non docker-compose build. | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Tried to use below action but seems slow. | |
# - uses: satackey/[email protected] | |
# continue-on-error: true | |
- name: Docker Compose Build | |
run: docker compose --env-file e2e.env build | |
- name: Run End-to-End Tests | |
run: docker compose --env-file e2e.env run e2e_tests |