Add layout animation progress batching #96
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: Worklets static checks | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
pull_request: | |
merge_group: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
worklets-static-checks: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
env: | |
PACKAGE_PATH: packages/react-native-worklets | |
runs-on: ubuntu-latest | |
concurrency: | |
group: worklets-static-checks-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
# Setup VM | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
- name: Clear annotations | |
run: .github/workflows/helper/clear-annotations.sh | |
# Setup repo | |
- name: Install monorepo node dependencies | |
run: yarn install --immutable | |
- name: Build Worklets for TypeScript types | |
working-directory: ${{ env.PACKAGE_PATH }} | |
run: yarn build | |
# Checks | |
- name: Check TypeScript types | |
working-directory: ${{ env.PACKAGE_PATH }} | |
run: yarn type-check | |
- name: Lint JavaScript | |
working-directory: ${{ env.PACKAGE_PATH }} | |
run: yarn lint | |
- name: Find circular dependencies | |
working-directory: ${{ env.PACKAGE_PATH }} | |
run: yarn circular-dependency-check |