Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

fix(deps): update dependency react-hook-form to v7.49.3 #417

fix(deps): update dependency react-hook-form to v7.49.3

fix(deps): update dependency react-hook-form to v7.49.3 #417

Workflow file for this run

name: Checks
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache App Dependencies
id: cache-node-modules-app
uses: actions/cache@v2
with:
path: node_modules
key: cache-node-modules-app-${{ hashFiles('yarn.lock') }}
- name: Copy ENV file
run: cp .env.example .env
- name: Install Dependencies
if: steps.cache-node-modules-app.outputs.cache-hit != 'true'
run: yarn install
- name: TypeScript check
run: yarn run ts-compile-check
- name: Lint check
run: yarn lint