Skip to content

Commit

Permalink
Use npm in workflows
Browse files Browse the repository at this point in the history
GitHub hates Yarn for some reason :(
  • Loading branch information
quantum9Innovation committed Apr 18, 2023
1 parent 42e142f commit 8777b80
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/api-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
node-version: 19
- name: Install dependencies
run: |
yarn install
npm install
- name: Run tests
run: |
yarn retest
npm retest
8 changes: 4 additions & 4 deletions .github/workflows/api-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
node-version: 19
- name: Install dependencies
run: |
yarn install
npm install
- name: Configure Git
run: |
cd ..
Expand All @@ -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: |
Expand All @@ -53,5 +53,5 @@ jobs:
git push
- name: Rerun QA checks
run: |
yarn lint
yarn npm audit
npm lint
npm audit

0 comments on commit 8777b80

Please sign in to comment.