chore: added requestId to VCLError #152
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: ReactNative-SDK Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
- release/** | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.sha }} | |
cancel-in-progress: true | |
env: | |
NODE_VERSION: '20' | |
RC_SUFFIX: 'rc' | |
jobs: | |
test-react-sdk: | |
runs-on: macos-14 | |
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: yarn lint | |
continue-on-error: false | |
# Run test | |
- name: Run Test | |
run: yarn test | |
continue-on-error: true |