fix: update addPath
method so it will also work on newarch interop
#199
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: RNSketchCanvas CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Lint and Tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: NPM Install | |
run: npm ci | |
- name: Linting | |
run: npm run lint | |
- name: Typing | |
run: npm run typescript | |
- name: Testing | |
run: npm run test --coverage | |
- name: Prepare Build | |
run: npm run build |