react-19/next15 template fixes #283
  
    
      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: Create Next App with Gluestack UI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| pull_request: | |
| branches: | |
| - main | |
| - development | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| env: | |
| working-directory: packages/create-next-app-with-gluestack-ui | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js v18.x | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18.x' | |
| - name: Install dependencies (prevent updates to lock file) | |
| working-directory: ${{ env.working-directory }} | |
| run: yarn | |
| - name: Building | |
| working-directory: ${{ env.working-directory }} | |
| run: yarn build | |
| - name: Testing | |
| working-directory: ${{ env.working-directory }} | |
| run: yarn test | |
| - name: Notify Success | |
| if: success() | |
| env: | |
| SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
| uses: voxmedia/github-action-slack-notify-build@v1 | |
| with: | |
| channel_id: C05HK6WEE56 | |
| status: SUCCESS by @${{ github.actor}} | |
| color: good | |
| - name: Notify Failure | |
| if: failure() | |
| env: | |
| SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
| uses: voxmedia/github-action-slack-notify-build@v1 | |
| with: | |
| channel_id: C05HK6WEE56 | |
| status: FAILED by @${{ github.actor}} | |
| color: danger |