fix typo on object key for targetValues
in custom-animations.mdx (#…
#5812
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: Test TypeScript and Lint in examples | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
pull_request: | |
merge_group: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
check: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
working-directory: | |
[app, Example, FabricExample, WebExample, TVOSExample] | |
concurrency: | |
group: typescript-${{ matrix.working-directory }}-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
- name: Clear annotations | |
run: scripts/clear-annotations.sh | |
- name: Install root node dependencies | |
run: yarn install | |
- name: Build package | |
run: yarn build | |
- name: Install ${{ matrix.working-directory }} app node dependencies | |
working-directory: ${{ matrix.working-directory }} | |
run: yarn | |
- name: Check types | |
working-directory: ${{ matrix.working-directory }} | |
run: yarn tsc --noEmit | |
- name: Lint | |
working-directory: ${{ matrix.working-directory }} | |
run: yarn lint | |
- name: Build | |
working-directory: ${{ matrix.working-directory }} | |
if: ${{ matrix.working-directory == 'WebExample' }} | |
run: yarn build |