Bump react-devtools-core from 4.28.0 to 4.28.5 #37
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: tests | |
on: | |
push: | |
branches: | |
- '*' # Run on all branches | |
pull_request: | |
branches: | |
- '*' # Run on all branches | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js 16.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- run: npm ci | |
- run: npm run prepack | |
- run: npm run test | |
- name: Build example app | |
run: | | |
cd example/react-native/ | |
npm install | |
npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res | |
cd android | |
./gradlew assembleRelease --no-daemon | |
test app/build/outputs/apk/debug/app-debug.apk |