Skip to content

Commit

Permalink
Update build-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
marlenezw authored Jul 22, 2024
1 parent 705cb80 commit 544fde8
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,13 @@ jobs:
cd ./frontend
npm install
- name: Build packages
run: npm run build
run: |
cd ./frontend
npm run build
- name: Test packages
run: npm test --if-present || exit 0
run: |
cd ./frontend
npm test --if-present || exit 0
- name: install python dependencies
run: |
Expand All @@ -75,4 +79,4 @@ jobs:
steps:
- name: Check build matrix status
if: ${{ needs.build_test.result != 'success' }}
run: exit 1
run: exit 1

0 comments on commit 544fde8

Please sign in to comment.