(DOCSP-33539): React Native: Update Create & Manage User API Keys to use auth hooks #737
Workflow file for this run
This file contains 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 SDK v12 CI Tests | |
on: | |
pull_request: | |
paths: | |
- "examples/react-native/v12/**" | |
jobs: | |
build: | |
name: Run React Native SDK v12 CI Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use React Native ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
working-directory: examples/react-native/v12/TestApp | |
run: npm install | |
- name: Run Tests | |
working-directory: examples/react-native/v12/TestApp | |
run: npm run test |