chore: react-native v0.81.4; vcl v2.8.1 #465
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: ReactNative-SDK-Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - release/** | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.sha }} | |
| cancel-in-progress: true | |
| env: | |
| NODE_VERSION: '22' | |
| RC_SUFFIX: 'rc' | |
| jobs: | |
| test-react-sdk: | |
| runs-on: macos-26 | |
| steps: | |
| # Git clone repository | |
| - name: Git clone repository | |
| uses: actions/checkout@v4 | |
| # Setup Node.js | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| # Install dependencies | |
| - name: Install dependencies | |
| run: corepack enable && yarn set version 3.6.1 && yarn | |
| # Run lint | |
| - name: Run lint | |
| run: corepack enable && yarn set version 3.6.1 && yarn lint | |
| continue-on-error: false | |
| # Run test | |
| - name: Run Test | |
| run: corepack enable && yarn set version 3.6.1 && yarn test | |
| continue-on-error: true |