diff --git a/.gitea/workflows/action.yml b/.gitea/workflows/action.yml index cdf19ad..493fbc9 100644 --- a/.gitea/workflows/action.yml +++ b/.gitea/workflows/action.yml @@ -7,6 +7,7 @@ env: SSH_HOST: ${{ secrets.SSH_HOST }} SSH_USER: ${{ secrets.SSH_USER }} SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} + CARGO_INCREMENTAL: 0 jobs: test-frontend: @@ -29,12 +30,12 @@ jobs: run: cd frontend && npx playwright install --with-deps - name: Run Playwright tests run: cd frontend && npx playwright test --workers 1 - - uses: actions/upload-artifact@v3 - if: always() - with: - name: playwright-report - path: frontend/playwright-report/ - retention-days: 30 + #- uses: actions/upload-artifact@v3 + # if: always() + # with: + # name: playwright-report + # path: frontend/playwright-report/ + # retention-days: 30 test-backend: runs-on: ubuntu-latest