Merge pull request #2646 from brandingbrand/deemaabdallah-patch-1 #323
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests | |
name: PR Test | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@v3 | |
with: | |
node-version: v18.x | |
- 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-app run init -v |