Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

Bump @testing-library/react-native from 12.7.2 to 12.9.0 #195

Bump @testing-library/react-native from 12.7.2 to 12.9.0

Bump @testing-library/react-native from 12.7.2 to 12.9.0 #195

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
name: Test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
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 Dependencies
run: yarn install --frozen-lockfile
- name: ESLint
run: yarn lint
- name: Jest tests
run: yarn test