chore(example): drop extraneous .cursor folder
#495
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: test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, synchronize] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| EXPO_USE_FAST_RESOLVER: true # Use the faster Metro resolver in SDK 51 | |
| jobs: | |
| packages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🏗 Setup repository | |
| uses: actions/checkout@v4 | |
| - name: 🏗 Setup monorepo | |
| uses: ./.github/actions/setup-monorepo | |
| - name: ✅ Lint packages | |
| run: pnpm run -w lint | |
| - name: 👷 Build packages | |
| run: pnpm run -w build | |
| - name: 🧪 Test packages | |
| run: pnpm run -w test |