Check TypeScript with different React Native versions #109
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: Check TypeScript with different React Native versions | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/check-TS-react-native.yml | |
schedule: | |
- cron: '37 19 * * *' | |
workflow_dispatch: | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
react-native-version: ['0.71', '0.72', 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@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
- name: Clear annotations | |
run: scripts/clear-annotations.sh | |
- name: Install react-native ${{ matrix.react-native-version }} | |
run: yarn add react-native@${{ matrix.react-native-version }} | |
- name: Check types | |
run: yarn type:check | |
- name: Check API | |
run: yarn type:check-api |