feat: Support for remaining SVG stroke properties in CSS (#7808) #1212
This file contains hidden or 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: 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: | |
reanimated-common-validation: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: ubuntu-latest | |
env: | |
PYTHON_VERSION: 3.13 | |
REANIMATED_DIR: packages/react-native-reanimated | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ env.PYTHON_VERSION }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.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: Lint Common | |
working-directory: ${{ env.REANIMATED_DIR }} | |
run: yarn lint:common |