Skip to content

chore(deps): bump react-native-reanimated from 4.5.0 to 4.5.3 #82

chore(deps): bump react-native-reanimated from 4.5.0 to 4.5.3

chore(deps): bump react-native-reanimated from 4.5.0 to 4.5.3 #82

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
permissions:
contents: read
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 'latest'
# Dependabot edits package.json but cannot regenerate bun.lock, so a frozen
# install fails on every one of its pull requests -- which is the sole reason
# they are all red. Typecheck, lint and test still run either way; only the
# lockfile constraint is relaxed, and only for that actor.
- name: Install dependencies
run: bun install ${{ github.actor == 'dependabot[bot]' && '--no-frozen-lockfile' || '--frozen-lockfile' }}
- name: Typecheck
run: bun run typecheck
- name: Lint
run: bun run lint
- name: Test
run: bun run test -- --ci --coverage --runInBand