diff --git a/.github/workflows/api-build.yml b/.github/workflows/api-build.yml index a6b6f6d..a56bdd0 100644 --- a/.github/workflows/api-build.yml +++ b/.github/workflows/api-build.yml @@ -32,8 +32,8 @@ jobs: node-version: 19 - name: Install dependencies run: | - yarn install + npm install - name: Run tests run: | - yarn retest + npm retest \ No newline at end of file diff --git a/.github/workflows/api-qa.yml b/.github/workflows/api-qa.yml index 923e440..bcbc4c9 100644 --- a/.github/workflows/api-qa.yml +++ b/.github/workflows/api-qa.yml @@ -30,7 +30,7 @@ jobs: node-version: 19 - name: Install dependencies run: | - yarn install + npm install - name: Configure Git run: | cd .. @@ -40,7 +40,7 @@ jobs: - name: Run QA checks continue-on-error: true run: | - yarn lint + npm lint - name: Commit changes continue-on-error: true run: | @@ -53,5 +53,5 @@ jobs: git push - name: Rerun QA checks run: | - yarn lint - yarn npm audit + npm lint + npm audit