From e588a0d4027b82c00850280c636d4d12be8a0701 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Tue, 9 Jul 2024 13:25:39 +0200 Subject: [PATCH] Add temporary job to test the workflow --- .github/workflows/static-analysis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 8912950308e..ff156da73b2 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -40,3 +40,22 @@ jobs: - name: Run Pest Type Coverage run: ./vendor/bin/pest --type-coverage + + + build-git-history-graph: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + # We need to fetch all history to generate the graph + fetch-depth: 0 + + - name: Generate Git history graph + run: php monorepo/scripts/build-git-history-graph.php + + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: 'git-history-graph' + path: 'monorepo/scripts/graphs'