Skip to content

remove _WORKLET_RUNTIME global property #5

remove _WORKLET_RUNTIME global property

remove _WORKLET_RUNTIME global property #5

Workflow file for this run

name: Validate C++
on:
push:
branches:
- Reanimated2
paths:
- '.github/workflows/validate-cpp.yml'
- 'Common/cpp/**'
- 'ios/native/**'
- 'android/src/main/cpp/**'
pull_request:
paths:
- '.github/workflows/validate-cpp.yml'
- 'Common/cpp/**'
- 'ios/native/**'
- 'android/src/main/cpp/**'
jobs:
lint:
name: cpplint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install cpplint
- name: Run cpplint
run: |
scripts/cpplint.sh