Skip to content

Bump @types/node from 20.4.2 to 20.4.3 #107

Bump @types/node from 20.4.2 to 20.4.3

Bump @types/node from 20.4.2 to 20.4.3 #107

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 }}