add trivy.yml #386
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 with wis2box stack | |
on: [ push, pull_request ] | |
jobs: | |
smoke-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Build Docker image | |
run: docker build -t wis2box-webapp . | |
- name: Start Docker Compose services | |
working-directory: tests | |
run: docker compose -f docker-compose.yml up -d --build | |
- name: check status | |
run: docker ps -a | |
- name: Wait for service to start | |
run: sleep 30 | |
- name: check logs wis2box-webapp | |
run: docker logs wis2box-webapp-test | |
- name: Check status code | |
run: | | |
curl -s -o /dev/null -w "%{http_code}" http://localhost:4173/wis2box-webapp/ | |
status_code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:4173/wis2box-webapp/) | |
if [[ $status_code -ne 200 ]]; then | |
echo "Request failed with status code:" | |
echo ${status_code} | |
exit 1 | |
fi | |
- name: failed tests 🚩 | |
working-directory: tests | |
if: ${{ failure() }} | |
run: | | |
echo "check docker logs" | |
docker compose -f docker-compose.yml logs |