Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork149
add submitBehavior prop on TextInput#750
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:Build | |
| on:[push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -uses:actions/setup-node@v4 | |
| with: | |
| node-version-file:".node-version" | |
| -uses:actions/cache@v4 | |
| with: | |
| path:~/.npm | |
| key:${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys:| | |
| ${{ runner.os }}-node- | |
| -run:npm install -g npm && npm --version | |
| -run:npm ci | |
| -run:npm test |