diff --git a/.github/workflows/Continuous_Delivery.yml b/.github/workflows/Continuous_Delivery.yml index 8952e791a..f3dd6e079 100644 --- a/.github/workflows/Continuous_Delivery.yml +++ b/.github/workflows/Continuous_Delivery.yml @@ -19,7 +19,7 @@ jobs: - name: Install Packages run: npm install - name: Build project - run: npm run-script build + run: npm run build - name: Run Tests run: export CI=true && npm run test -- --coverage env: diff --git a/.github/workflows/Continuous_Integration_Backend.yml b/.github/workflows/Continuous_Integration_Backend.yml index 94c485494..3142abe85 100644 --- a/.github/workflows/Continuous_Integration_Backend.yml +++ b/.github/workflows/Continuous_Integration_Backend.yml @@ -19,7 +19,7 @@ jobs: - name: Install Packages run: npm install - name: Build project - run: npm run-script build + run: npm run build - name: Run Tests run: export CI=true && npm run test -- --coverage env: diff --git a/.github/workflows/Continuous_Integration_Frontend.yml b/.github/workflows/Continuous_Integration_Frontend.yml index 1f0aa769b..48ecd4dc6 100644 --- a/.github/workflows/Continuous_Integration_Frontend.yml +++ b/.github/workflows/Continuous_Integration_Frontend.yml @@ -19,8 +19,8 @@ jobs: - name: Install Packages run: npm install - name: Build project - run: npm run-script build + run: npm run build - name: Run Tests - run: npm run-script test -- --coverage + run: npm run test -- --coverage env: MAPBOX_TOKEN: ${{ secrets.MAPBOX_TOKEN }}