Skip to content

feat: initial commit #1

feat: initial commit

feat: initial commit #1

Workflow file for this run

name: Create and test a Docker image
on:
pull_request:
branches: ['main']
jobs:
build-and-test-image:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Start containers
run: docker compose up --build --detach
- name: Run test
run: curl -s localhost:3000 | grep "Appvia Todo List"
- name: Stop containers
run: docker compose down