This repository was archived by the owner on Jun 19, 2025. It is now read-only.
fix: upgrade react-native from 0.65.1 to 0.74.3 #5
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: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- run: yarn --frozen-lockfile | |
- run: yarn build | |
- run: yarn test --coverage | |
- if: github.event.repository.fork == false && github.event_name != 'pull_request' | |
run: yarn dv-scripts ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- uses: codecov/codecov-action@v2 |