chore(deps): update dependency @types/react to v17.0.80 (#60) #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |