chore(deps): bump axios from 1.5.1 to 1.6.5 #560
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: Test API (Docker) | |
on: | |
push: | |
pull_request: | |
jobs: | |
docker: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Write ENV_FILE to packages/api/.env | |
run: | | |
wget ${{ secrets.ENV_FILE }} -O packages/api/.env | |
- name: Start containers | |
run: cd packages/api && docker compose -f "docker-compose.yaml" up -d --build | |
- name: Wait for containers | |
run: sleep 30 | |
- name: Run tests | |
run: curl --location --request POST http://localhost:4006/apikey?masterkey=${{ secrets.DEMO_MASTER_KEY }} |