Skip to content

Bump @testing-library/react-native from 12.0.1 to 12.3.2 #64

Bump @testing-library/react-native from 12.0.1 to 12.3.2

Bump @testing-library/react-native from 12.0.1 to 12.3.2 #64

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.14
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run eslint
run: yarn run lint
- name: Run Prettier
run: yarn run prettier-check
- name: Run type check
run: yarn run type-check
- name: Run Tests
run: yarn run test