Update image formats and add new examples for earl-toastify (#2165) #1460
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: '[DATA] Test and Validate' | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths: | |
| - react-native-libraries.json | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Validate react-native-libraries.json | |
| run: bun data:validate | |
| - name: Test react-native-libraries.json | |
| run: bun data:test | |
| - name: Check new entries in react-native-libraries.json | |
| run: bun ci:validate | |
| env: | |
| CI_CHECKS_TOKEN: ${{ github.token }} | |
| - name: Lint data | |
| run: bun oxfmt react-native-libraries.json --check |