feat(v13): Flagship Code v13 #169
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: PR Test | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 25 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: Use Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn | |
- name: Build packages | |
run: yarn build | |
- name: Run tests | |
run: yarn test | |
- name: Initialize react native app | |
run: yarn workspace @brandingbrand/code-example prebuild --build internal --env prod --platform android |