Skip to content

chore(deps): update dependency @types/react to v17.0.80 (#60) #106

chore(deps): update dependency @types/react to v17.0.80 (#60)

chore(deps): update dependency @types/react to v17.0.80 (#60) #106

Workflow file for this run

name: Tests
on:
push:
branches:
- "*"
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
jobs:
install:
runs-on: ubuntu-latest
steps:
- 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@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: install
run: |
yarn --frozen-lockfile
yarn build
- name: test packages/match-entities test
run: |
yarn --cwd packages/match-entities test
- name: test packages/csv-sample test
run: |
yarn --cwd packages/csv-sample test
- name: test packages/csv-anonymify test
run: |
yarn --cwd packages/csv-anonymify test