Release 3.16.7 #205
Workflow file for this run
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: Reanimated TypeScript compatibility test [Nightly] | |
env: | |
YARN_ENABLE_HARDENED_MODE: 0 | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/reanimated-typescript-compatibility-test-nightly.yml | |
schedule: | |
- cron: '37 19 * * *' | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
run: | |
if: github.repository == 'software-mansion/react-native-reanimated' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# TODO: Fetch versions from common source. | |
react-native-version: ['0.74', '0.75', '0.76', nightly] | |
fail-fast: false | |
concurrency: | |
group: TS-react-native-nightly-${{ matrix.react-native-version }}-${{ 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: .github/workflows/helper/clear-annotations.sh | |
- name: Install monorepo node dependencies | |
run: yarn install | |
- name: Build Reanimated | |
working-directory: packages/react-native-reanimated | |
run: yarn build | |
- name: Install react-native ${{ matrix.react-native-version }} | |
run: yarn up react-native@${{ matrix.react-native-version }} | |
- name: Check source types | |
working-directory: packages/react-native-reanimated | |
run: yarn type:check:src | |
- name: Check plugin types | |
working-directory: packages/react-native-reanimated | |
run: yarn type:check:plugin | |
- name: Check API | |
working-directory: packages/react-native-reanimated | |
run: yarn type:check:app | |
- name: Run common type tests | |
working-directory: packages/react-native-reanimated | |
run: yarn type:check:tests:common |