Skip to content

Bump jest from 29.5.0 to 29.6.0 #97

Bump jest from 29.5.0 to 29.6.0

Bump jest from 29.5.0 to 29.6.0 #97

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16.15.1'
cache: 'yarn'
- name: Install Dependencies
run: yarn install
- name: Run Unit Tests
run: yarn test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}