Skip to content

Refactoring: Separating HSM and Speed sends #4613

Refactoring: Separating HSM and Speed sends

Refactoring: Separating HSM and Speed sends #4613

Workflow file for this run

name: Unit Testing
on:
push:
branches: [master]
pull_request:
branches: [master, whatsapp-group-chats]
jobs:
test:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run test and generate coverage report
run: yarn test:coverage
- name: Upload coverage to Codecov
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}