Fix puppeteer installation #997
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: Smoke test production build | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the docker-compose stack | |
run: ./run docker:pull && ./run start | |
- name: check containers are not restarting | |
run: sleep 5 && docker-compose top | |
- name: check api is up | |
run: sleep 5 && wget --tries=5 --waitretry=10 --retry-connrefused -v http://localhost:4000/api/health |