feat: Support for remaining SVG stroke properties in CSS (#7808) #1890
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 Apple validation | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/reanimated-apple-validation.yml' | |
- 'packages/react-native-reanimated/apple/**' | |
- 'packages/react-native-reanimated/package.json' | |
- 'packages/react-native-reanimated/scripts/validate-apple.sh' | |
- 'packages/react-native-reanimated/scripts/cpplint.sh' | |
- 'packages/react-native-reanimated/Common/cpp/**' | |
pull_request: | |
paths: | |
- '.github/workflows/reanimated-apple-validation.yml' | |
- 'packages/react-native-reanimated/apple/**' | |
- 'packages/react-native-reanimated/package.json' | |
- 'packages/react-native-reanimated/scripts/validate-apple.sh' | |
- 'packages/react-native-reanimated/scripts/cpplint.sh' | |
- 'packages/react-native-reanimated/Common/cpp/**' | |
merge_group: | |
branches: | |
- main | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
check: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
env: | |
REANIMATED_DIR: packages/react-native-reanimated | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install monorepo node dependencies | |
run: yarn install --immutable | |
- name: Build Reanimated package | |
working-directory: ${{ env.REANIMATED_DIR }} | |
run: yarn build | |
- name: Lint apple | |
working-directory: ${{ env.REANIMATED_DIR }} | |
run: yarn lint:apple |