Skip to content

chore: bump react-native-screens from 3.22.1 to 3.24.0 #1394

chore: bump react-native-screens from 3.22.1 to 3.24.0

chore: bump react-native-screens from 3.22.1 to 3.24.0 #1394

Workflow file for this run

name: Validate Code
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
validate-code:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install node dependencies
run: yarn ci-install
- name: Run code dupe
run: yarn ci-dupe
- name: Run lint
run: yarn ci-lint
- name: Run tests
run: yarn ci-test