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