DCKA 5025 unify the experience between wallet examples #14
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: React Native Example CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| react-native-example-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.2.0' | |
| - name: Install dependencies | |
| run: npm ci --force | |
| working-directory: examples/react-native-example | |
| - name: lint | |
| run: npm run lint | |
| working-directory: examples/react-native-example | |
| - name: Run tests | |
| run: npm test -- --passWithNoTests | |
| working-directory: examples/react-native-example | |
| env: | |
| CI: true |