diff --git a/.github/workflows/full-stack-tests.yml b/.github/workflows/full-stack-tests.yml index e1ccbf7..cae09ae 100644 --- a/.github/workflows/full-stack-tests.yml +++ b/.github/workflows/full-stack-tests.yml @@ -33,18 +33,19 @@ jobs: cd backend npm install - - name: Initialize Database - run: | - cd backend - node initialize.ts - - name: Build Backend run: | cd backend npm run build + - name: Initialize Database + run: | + cd backend + npm run initialize-db + - name: Start API run: | cd backend npm start +