mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 00:04:23 -04:00
* WIP: proof of concept * basic meta tag injection * add support for scraping public/private links * make tests go brrrrr * cleanup initialization * rewrite build config * remove recipe meta on frontend * make type checker happy * remove other deployment methods * fix issue with JSON response on un-authenticated request * docs updates * update tivy scanner * fix linter stuff * change registry tag * build fixes * fix same mistake I always make
20 lines
413 B
YAML
20 lines
413 B
YAML
name: PR CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- mealie-next
|
|
|
|
jobs:
|
|
backend-tests:
|
|
name: "Backend Server Tests"
|
|
uses: ./.github/workflows/partial-backend.yml
|
|
|
|
frontend-tests:
|
|
name: "Frontend and End-to-End Tests"
|
|
uses: ./.github/workflows/partial-frontend.yml
|
|
|
|
container-scanning:
|
|
name: "Trivy Container Scanning"
|
|
uses: ./.github/workflows/partial-trivy-container-scanning.yml
|