Skip to content

Cover more unit testing #2

Cover more unit testing

Cover more unit testing #2

Workflow file for this run

name: Run Unit Testing
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node 18
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Run tests and collect coverage
run: yarn test --coverage
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: nysamnang/react-native-raw-bottom-sheet
files: ./coverage/*.json