bump dependencies, add few lint rules, address warnings #911
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: '[CODE] Lint and test' | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths-ignore: | |
| - 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 | |
| - if: ${{ github.event_name == 'pull_request' }} | |
| name: List lock changes | |
| uses: Simek/bun-lock-changes@main | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: TSC | |
| run: bun tsc | |
| - name: Lint | |
| run: bun lint | |
| - name: Build Next app | |
| run: bun next build --webpack |