Skip to content

Doc upgrades (#175) #604

Doc upgrades (#175)

Doc upgrades (#175) #604

Workflow file for this run

name: Run Tests
on:
pull_request:
push:
branches: main
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Prettier (Check)
run: yarn prettier:check
- name: Run Typescheck
run: yarn tsc --noEmit
- name: Run Unit Tests
run: yarn test --coverage