← back to Exo
chore: Fix typecheck job in GitHub workflow
38dcf698eb4ccc9e995e51e139e9478cfe4ab1ff · 2025-06-29 21:47:23 +0100 · Alex Cheema
Files touched
M .github/workflows/pipeline.yml
Diff
commit 38dcf698eb4ccc9e995e51e139e9478cfe4ab1ff
Author: Alex Cheema <alexcheema123@gmail.com>
Date: Sun Jun 29 21:47:23 2025 +0100
chore: Fix typecheck job in GitHub workflow
---
.github/workflows/pipeline.yml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml
index d8013c87..1de76b8b 100644
--- a/.github/workflows/pipeline.yml
+++ b/.github/workflows/pipeline.yml
@@ -15,6 +15,17 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
+
+ - name: Configure git user
+ run: |
+ git config --local user.email "github-actions@users.noreply.github.com"
+ git config --local user.name "github-actions bot"
+ shell: bash
+
+ - uses: cachix/install-nix-action@v31
+ with:
+ github_access_token: ${{ secrets.GITHUB_TOKEN }}
+
- uses: ./.github/actions/typecheck
ci:
needs: typecheck
← c9d44a16 chore: Fix typecheck job in GitHub workflow
·
back to Exo
·
chore: Skip protobuf generation if no .proto files exist 784f0ec4 →