deps: bump @melloware/react-logviewer from 6.3.5 to 6.4.1 in /Lighthouse.Frontend #3672
Workflow file for this run
This file contains hidden or 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: Build And Deploy Lighthouse | |
| on: | |
| push: | |
| branches: [ "main", "features/**" ] | |
| paths: | |
| - "Lighthouse.Backend/**" | |
| - "Lighthouse.Backend.Tests/**" | |
| - "Lighthouse.EndToEndTests/**" | |
| - "Lighthouse.Frontend/**" | |
| - ".github/workflows/ci*.yml" | |
| - ".github/actions/**" | |
| - "examples/postgres/**" | |
| pull_request: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| jobs: | |
| version: | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_version.yml | |
| name: Version | |
| permissions: | |
| actions: read | |
| contents: write | |
| changes: | |
| uses: ./.github/workflows/ci_changes.yml | |
| name: Detect Changes | |
| backend: | |
| needs: changes | |
| uses: ./.github/workflows/ci_backend.yml | |
| name: Verify Backend | |
| with: | |
| backend: ${{ needs.changes.outputs.backend }} | |
| secrets: inherit | |
| frontend: | |
| needs: changes | |
| uses: ./.github/workflows/ci_frontend.yml | |
| name: Verify Frontend | |
| with: | |
| frontend: ${{ needs.changes.outputs.frontend }} | |
| secrets: inherit | |
| e2e: | |
| needs: changes | |
| uses: ./.github/workflows/ci_e2e.yml | |
| name: Verify End to End Tests | |
| with: | |
| e2e: ${{ needs.changes.outputs.e2e }} | |
| packageapp: | |
| needs: version | |
| # Run version even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_packageapp.yml | |
| name: Package App | |
| permissions: | |
| actions: write | |
| with: | |
| fileversion: ${{ needs.version.outputs.fileversion }} | |
| version: ${{ needs.version.outputs.version }} | |
| docker: | |
| needs: version | |
| # Run version even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_docker.yml | |
| name: Build and Push Docker Image | |
| permissions: | |
| packages: write | |
| with: | |
| fileversion: ${{ needs.version.outputs.fileversion }} | |
| secrets: inherit | |
| sbom: | |
| needs: version | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_sbom.yml | |
| name: Generate SBOM | |
| permissions: | |
| contents: read | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| # Linux verification with EndToEnd tests | |
| verifysqlite: | |
| needs: [frontend, backend, e2e, packageapp, version] | |
| # Run version even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_verifysqlite.yml | |
| name: Verify SQLite Linux Build | |
| permissions: | |
| actions: read | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| secrets: inherit | |
| verifypostgres: | |
| needs: [frontend, backend, e2e, packageapp, version] | |
| # Run version even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_verifypostgres.yml | |
| name: Verify Postgres Linux Build | |
| permissions: | |
| actions: read | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| secrets: inherit | |
| # Linux standalone (Tauri AppImage) | |
| package-linux-standalone: | |
| needs: [version, packageapp] | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_package-linux-standalone.yml | |
| name: Package Linux Standalone | |
| permissions: | |
| actions: write | |
| with: | |
| fileversion: ${{ needs.version.outputs.fileversion }} | |
| version: ${{ needs.version.outputs.version }} | |
| secrets: inherit | |
| # Windows standalone (Tauri NSIS + MSI) | |
| package-win-standalone: | |
| needs: [version, packageapp] | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_package-win-standalone.yml | |
| name: Package Windows Standalone | |
| permissions: | |
| actions: write | |
| with: | |
| fileversion: ${{ needs.version.outputs.fileversion }} | |
| version: ${{ needs.version.outputs.version }} | |
| secrets: inherit | |
| # Windows signing and verification | |
| codesign-windows: | |
| needs: [version, package-win-standalone] | |
| # Run version even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_codesign-windows.yml | |
| name: Code Sign Windows App | |
| permissions: | |
| actions: write | |
| secrets: inherit | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| verifywindows: | |
| needs: [codesign-windows, version] | |
| # Run version even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_verifywindows.yml | |
| name: Verify Windows App | |
| permissions: | |
| actions: read | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| # macOS standalone (Tauri DMG) | |
| package-macos-standalone: | |
| needs: [version, packageapp] | |
| # Run version even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_package-macos-standalone.yml | |
| name: Package macOS Standalone | |
| permissions: | |
| actions: write | |
| with: | |
| fileversion: ${{ needs.version.outputs.fileversion }} | |
| version: ${{ needs.version.outputs.version }} | |
| secrets: inherit | |
| verifymacos: | |
| needs: [package-macos-standalone, version] | |
| # Run version even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_verifymacos.yml | |
| name: Verify macOS App | |
| permissions: | |
| actions: read | |
| with: | |
| version: ${{ needs.version.outputs.version }} | |
| secrets: inherit | |
| release: | |
| needs: [version, docker, sbom, verifysqlite, verifypostgres, verifymacos, verifywindows, package-linux-standalone] | |
| # Run even if some prior jobs were skipped, but not if they failed | |
| if: always() && !cancelled() && !contains(needs.*.result, 'failure') | |
| uses: ./.github/workflows/ci_release.yml | |
| name: Release | |
| permissions: | |
| contents: write | |
| packages: write | |
| actions: read | |
| id-token: write | |
| with: | |
| fileversion: ${{ needs.version.outputs.fileversion }} | |
| version: ${{ needs.version.outputs.version }} | |
| secrets: inherit |