Skip to content

Commit

Permalink
add flags -- --watch=false --browsers=ChromeHeadless
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Aug 24, 2024
1 parent 83765e6 commit 2aff816
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
run: npm ci --legacy-peer-deps && npm run build

- name: Test unit library
run: npm run test:lib
run: npm run test:lib -- --watch=false --browsers=ChromeHeadless

- name: Test unit application
run: npm run test
run: npm run test -- --watch=false --browsers=ChromeHeadless

- name: Deploy to Firebase Hosting
uses: FirebaseExtended/action-hosting-deploy@v0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
run: npm ci --legacy-peer-deps && npm run build

- name: Test unit library
run: npm run test:lib
run: npm run test:lib -- --watch=false --browsers=ChromeHeadless

- name: Test unit application
run: npm run test
run: npm run test -- --watch=false --browsers=ChromeHeadless
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 2aff816

Please sign in to comment.