From 7b288d33cbaa881da6003476ca2dd825793626d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoni=20Nu=C3=B1ez=20Romeu?= Date: Tue, 19 May 2026 18:28:31 +0200 Subject: [PATCH] Remove tests, doing in one --- .gitea/workflows/tests.yaml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .gitea/workflows/tests.yaml diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml deleted file mode 100644 index ea439eb..0000000 --- a/.gitea/workflows/tests.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: Run Tests -run-name: ${{ gitea.actor }} - ${{ gitea.event_name }} - ${{ gitea.ref }} -on: [push] - -jobs: - test-backend: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Install dependencies - run: | - cd backend - npm ci - - name: Run tests - run: | - cd backend - npm run test - test-frontend: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - name: Install dependencies - run: | - cd frontend - npm ci - - name: Run tests - run: | - cd frontend - npm run test