Skip to content

Small name changes. #57

Small name changes.

Small name changes. #57

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and run with Docker Compose
run: |
docker compose up --build -d
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
- name: Wait for services to be ready
run: sleep 10
- name: Print Docker logs
run: docker compose logs
- name: Stop and remove Docker containers
run: docker compose down