Files
topola-viewer/.github/workflows/README.md
2026-07-03 23:55:08 +02:00

1.8 KiB

GitHub Workflows

This directory contains GitHub Actions workflow files that automate various tasks for the project, such as continuous integration (CI), security analysis, and deployment.

Files

  • codeql-analysis.yml: Performs CodeQL security analysis on the codebase to identify potential vulnerabilities.
  • deploy-docker.yml: Automatically builds and publishes the lightweight Caddy-based Docker image of the application to GitHub Container Registry (GHCR).
  • deploy-everywhere.yml: A manually triggered workflow that initiates deployment to both GitHub Pages and WikiTree Apps by calling their respective workflow files.
  • deploy-gh-pages.yml: Handles the deployment of the application to GitHub Pages.
  • deploy-wikitree-apps.yml: Manages the deployment of the application to WikiTree Apps using SFTP.
  • node.js.yml: The main Continuous Integration (CI) workflow. It installs dependencies, checks formatting, lints, builds, and runs tests across multiple Node.js versions.
  • prober-gh-pages.yml: Reusable prober that smoke-tests the GitHub Pages deployment with GEDCOM-from-URL through the CORS proxy. Runs daily and after deploy.
  • prober-wikitree.yml: Reusable prober that smoke-tests the WikiTree direct API path on the live WikiTree deployment. Runs daily and after deploy.
  • prober-wikitree-cors.yml: Reusable prober that smoke-tests the CORS proxy from the WikiTree deployment with GEDCOM-from-URL. Runs daily and after deploy.
  • prober-docker.yml: Reusable prober that smoke-tests the published Docker image from GHCR (Dockerfile, Caddy config, app startup) by pulling and running it locally. Runs daily and after deploy.