chore: update react-native example to Expo SDK 53 #719
Workflow file for this run
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: docs-suite | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| paths: | |
| - website/** | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install dependencies | |
| working-directory: website | |
| run: yarn install | |
| - name: Build | |
| working-directory: website | |
| run: yarn build | |
| - name: Lint | |
| working-directory: website | |
| run: yarn lint | |
| - name: Check Formatting | |
| working-directory: website | |
| run: yarn checkFormat |