feat(crates/tuono): feat: add spinner to tuono build
(#560)
#33
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: Docker CI | |
# If we need support more OS refer to | |
# https://github.com/tuono-labs/tuono/pull/332#issuecomment-2614439692 | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
jobs: | |
build_and_test: | |
name: Build and Test Docker Image on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build and Run Docker Compose | |
run: | | |
docker compose -f docker/compose.yml up --build -d | |
- name: Check if the container is running | |
run: | | |
docker ps --filter "name=tuono-source-container" --format "table {{.Names}}\t{{.Status}}" | |
if ! docker ps --filter "name=tuono-source-container" --format "{{.Status}}" | grep -q "Up"; then | |
echo "Error: Container 'tuono-source-container' is not running." | |
exit 1 | |
fi | |
- name: Check commands inside container | |
run: | | |
docker exec tuono-source-container pnpm --version || { echo "Error: pnpm is not available."; exit 1; } | |
docker exec tuono-source-container tuono --version || { echo "Error: tuono is not available."; exit 1; } | |
- name: Run cargo test | |
run: docker exec tuono-source-container cargo test | |
- name: Install node dependencies in each tuono's sub-projets | |
run: docker exec tuono-source-container bash -c 'for dir in /tuono/packages/*; do [ -d "$dir" ] && (cd "$dir" && yes | pnpm install --frozen-lockfile); done' | |
- name: Run pnpm test | |
run: docker exec tuono-source-container pnpm test | |
- name: Tear Down Docker Compose | |
if: always() | |
run: | | |
docker compose -f docker/compose.yml down --volumes |