From a76dfcc0296924d5a53b0fcc4076c4d968c0dea4 Mon Sep 17 00:00:00 2001 From: Refringe Date: Wed, 10 Apr 2024 15:37:09 -0400 Subject: [PATCH] Fixes Tests Workflow For Real Can't use `npm ci`. Forgot that we removed the package lock file. Also updated the working directory path. --- .gitea/workflows/run-tests.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml index 0b0a2aec..502dc88c 100644 --- a/.gitea/workflows/run-tests.yaml +++ b/.gitea/workflows/run-tests.yaml @@ -14,13 +14,12 @@ jobs: steps: - uses: actions/checkout@v3 with: - path: 'server' fetch-depth: 1 - name: Install Dependencies - working-directory: server - run: npm ci + working-directory: /workspace/SPT-AKI/Server/project + run: npm install - name: Run Tests - working-directory: server + working-directory: /workspace/SPT-AKI/Server/project run: npm run test