Skip to content

fix: Crashes during CSS transitions of complex properties #458

fix: Crashes during CSS transitions of complex properties

fix: Crashes during CSS transitions of complex properties #458

name: Reanimated Common validation
on:
push:
branches:
- main
paths:
- '.github/workflows/reanimated-common-validation.yml'
- 'packages/react-native-reanimated/scripts/cpplint.sh'
- 'packages/react-native-reanimated/scripts/validate-includes.sh'
- 'packages/react-native-reanimated/Common/cpp/**'
pull_request:
paths:
- '.github/workflows/reanimated-common-validation.yml'
- 'packages/react-native-reanimated/scripts/cpplint.sh'
- 'packages/react-native-reanimated/scripts/validate-includes.sh'
- 'packages/react-native-reanimated/Common/cpp/**'
merge_group:
branches:
- main
workflow_call:
workflow_dispatch:
jobs:
lint:
if: github.repository == 'software-mansion/react-native-reanimated'
name: cpplint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.13]
env:
REANIMATED_DIR: packages/react-native-reanimated
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install cpplint==1.6.1
- name: Install monorepo node dependencies
run: yarn install --immutable
- name: Build Reanimated
working-directory: ${{ env.REANIMATED_DIR }}
run: yarn build
- name: Lint Common
working-directory: ${{ env.REANIMATED_DIR }}
run: yarn lint:common
- name: Disallow DEBUG macros
working-directory: ${{ env.REANIMATED_DIR }}
run: |
! egrep -r '(#if DEBUG|#ifdef DEBUG)' Common/cpp/ apple/ android/src/main/cpp/