feat(188): fix del error por mostrar videos (#189) #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# π Links: | |
# Source file: https://github.com/obytes/react-native-template-obytes/blob/master/.github/workflows/test.yml | |
name: Tests (jest) | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ master, develop ] | |
jobs: | |
test: | |
name: Tests (jest) | |
runs-on: ubuntu-latest | |
steps: | |
- name: π¦ Checkout project repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: π¦ Setup Node + PNPM + install deps | |
uses: ./.github/actions/setup-node-pnpm-install | |
- name: πββοΈ Run Tests | |
run: pnpm run test:ci | |
- name: Jest Coverage Comment | |
uses: MishaKav/jest-coverage-comment@main | |
if: (success() || failure()) && github.event_name == 'pull_request' | |
with: | |
coverage-summary-path: ./coverage/coverage-summary.json | |
summary-title: "π― Test Coverage" | |
badge-title: Coverage | |
create-new-comment: false | |
junitxml-title: π Tests Results | |
junitxml-path: ./coverage/jest-junit.xml | |
coverage-title: π Tests Details | |
coverage-path: ./coverage/coverage.txt | |
report-only-changed-files: true |