chore(deps): update dependency @types/react to v17.0.83 #325
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: | |
- '**' | |
tags-ignore: | |
- v* | |
concurrency: | |
cancel-in-progress: true | |
group: tests-${{ github.ref }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Node setup | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Yarn cache setup | |
uses: c-hive/gha-yarn-cache@v2 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile --prefer-offline | |
- name: Run linter | |
run: yarn lint |