From 4c2687498fcd31496d9b19f8d9525d8f5b0ab6f9 Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Tue, 31 Mar 2026 22:41:11 -0700 Subject: [PATCH] fix: update workflows to checkout in /app directory --- .gitea/workflows/pr.yml | 4 ++++ .gitea/workflows/test.yml | 2 ++ 2 files changed, 6 insertions(+) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 2b7d55a..107be03 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + path: /app - name: Run unit tests run: npm run test:run @@ -33,6 +35,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + path: /app - name: Setup SQLite database run: | diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index ebf8657..7f5aebd 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -17,6 +17,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + path: /app - name: Run unit tests run: npm run test:run