fix(deps): update dependency react-native-screens to ^3.29.0 #21089
Workflow file for this run
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: Check | |
on: | |
# Run on pushes to main.. | |
push: | |
branches: | |
- main | |
# ..and any pull request. | |
pull_request: | |
workflow_dispatch: | |
# Cron job to run checks @ 8:30 pm daily on the latest commit on the default branch - main | |
schedule: | |
- cron: '30 20 * * *' | |
# Cancel any in progress run of the workflow for a given PR | |
# This avoids building outdated code | |
concurrency: | |
# Fallback used github.head_ref as it only defined on pull_request | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
vulnerability: | |
name: Vulnerabilities | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-install | |
- run: ./scripts/ci_check_vulnerabilities.sh | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-install | |
- run: yarn run format:check | |
- run: yarn run lint | |
- run: yarn tsc -p .github/scripts | |
yarn-lock: | |
name: 'yarn.lock Up-to-date' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-install | |
- run: git diff --exit-code | |
licenses: | |
name: Licenses | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-install | |
- run: yarn check-licenses | |
knip-depcheck: | |
name: Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-install | |
- run: yarn knip:depcheck | |
knip-regression: | |
name: Knip Regression | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- uses: ./.github/actions/yarn-install | |
- run: yarn ts-node ./.github/scripts/checkKnipRegression.ts | |
env: | |
# Force color output in the terminal with chalk | |
# See https://github.com/chalk/supports-color/issues/106 | |
FORCE_COLOR: 2 |