Fixes Tests Workflow For Real

Can't use `npm ci`. Forgot that we removed the package lock file. Also updated the working directory path.
This commit is contained in:
Refringe 2024-04-10 15:37:09 -04:00
parent 94b7d31bc8
commit a76dfcc029
No known key found for this signature in database
GPG Key ID: 7715B85B4A6306ED

View File

@ -14,13 +14,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
path: 'server'
fetch-depth: 1 fetch-depth: 1
- name: Install Dependencies - name: Install Dependencies
working-directory: server working-directory: /workspace/SPT-AKI/Server/project
run: npm ci run: npm install
- name: Run Tests - name: Run Tests
working-directory: server working-directory: /workspace/SPT-AKI/Server/project
run: npm run test run: npm run test