Skip to content

Commit

Permalink
chore(JGIVEN-3): Use npm instead of yarn in workflow
Browse files Browse the repository at this point in the history
Signed-off-by: l-1squared <30831153+l-1squared@users.noreply.github.com>
  • Loading branch information
l-1squared committed Oct 25, 2024
1 parent 7d5b3b2 commit 2bdb819
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/html-app-branch_and_pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install
run: yarn install
run: npm install
- name: Build
run: yarn build
run: npm run build
- name: Test
run: yarn test
run: npm run test
# Sample CI for react apps
react:
defaults:
Expand Down

0 comments on commit 2bdb819

Please sign in to comment.