chore: react-native v0.81.4; vcl v2.8.1 #469
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: yarn install --frozen-lockfile | |
| # Check licenses | |
| # - name: Check licenses | |
| # run: corepack enable && yarn set version 1.22.22 && yarn check-licenses | |
| # Run lint | |
| - name: Run lint | |
| run: yarn lint | |
| continue-on-error: false | |
| # Run test | |
| - name: Run Test | |
| run: yarn test | |
| continue-on-error: true |