diff --git a/.github/workflows/test-server-self-host.yml b/.github/workflows/test-server-self-host.yml index d4ebd23b..ae46f29c 100644 --- a/.github/workflows/test-server-self-host.yml +++ b/.github/workflows/test-server-self-host.yml @@ -102,7 +102,7 @@ jobs: pnpx wait-on tcp:3434 -t 30s working-directory: ./ - name: Start server - run: npm start:production > api.log 2>&1 & + run: npm run start:production > api.log 2>&1 & working-directory: ./apps/api - name: Start worker run: npm run workers > worker.log 2>&1 & diff --git a/.github/workflows/test-server.yml b/.github/workflows/test-server.yml index 43384061..ca186287 100644 --- a/.github/workflows/test-server.yml +++ b/.github/workflows/test-server.yml @@ -96,7 +96,7 @@ jobs: chmod +x target/release/libpdf_parser.so working-directory: ./apps/api/sharedLibs/pdf-parser - name: Start the application - run: npm start:production > api.log 2>&1 & + run: npm run start:production > api.log 2>&1 & working-directory: ./apps/api id: start_app - name: Start worker