[Toolkit][Shadcn] Add Sonner #248
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: App Demo Native | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| paths: | |
| - '.github/workflows/demo-native.yaml' | |
| - 'apps/demo-native/**' | |
| - 'src/Native/**' | |
| - 'src/StimulusBundle/**' | |
| - '!src/*/doc/**' | |
| - '!src/**/*.md' | |
| pull_request: | |
| paths-ignore: | |
| - '.github/workflows/demo-native.yaml' | |
| - 'apps/demo-native/**' | |
| - 'src/Native/**' | |
| - 'src/StimulusBundle/**' | |
| - '!src/*/doc/**' | |
| - '!src/**/*.md' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 | |
| - uses: shivammathur/setup-php@690cb7c9d81dbfe51eba732cfca0a00ca42db777 | |
| with: | |
| php-version: '8.4' | |
| tools: symfony-cli, flex | |
| - name: Install root PHP dependencies | |
| uses: ramsey/composer-install@5c2bcf28d7b060ef3c601d7b476d5430a7b46c27 | |
| with: | |
| working-directory: ${{ github.workspace }} | |
| - name: Build root PHP packages | |
| run: php .github/build-packages.php | |
| - name: Install app dependencies | |
| uses: ramsey/composer-install@5c2bcf28d7b060ef3c601d7b476d5430a7b46c27 | |
| with: | |
| working-directory: apps/demo-native | |
| dependency-versions: highest | |
| - name: Start Symfony server | |
| run: symfony server:start -d --port=9888 --no-tls | |
| working-directory: apps/demo-native | |
| - name: Test homepage returns 200 | |
| run: curl --fail-with-body http://127.0.0.1:9888/ | |
| - name: Test note detail returns 200 | |
| run: curl --fail-with-body http://127.0.0.1:9888/notes/1 | |
| - name: Test new note page returns 200 | |
| run: curl --fail-with-body http://127.0.0.1:9888/notes/new | |
| - name: Test edit note page returns 200 | |
| run: curl --fail-with-body http://127.0.0.1:9888/notes/1/edit | |
| - name: Test settings page returns 200 | |
| run: curl --fail-with-body http://127.0.0.1:9888/settings | |
| - name: Test native config JSON returns 200 | |
| run: curl --fail-with-body http://127.0.0.1:9888/config/ios_v1.json | |
| - name: Validate native config contains modal rule | |
| run: curl -s http://127.0.0.1:9888/config/ios_v1.json | jq -e '[.rules[] | select(.properties.context == "modal")] | length > 0' | |
| - name: Stop Symfony server | |
| if: always() | |
| run: symfony server:stop | |
| working-directory: apps/demo-native |