Skip to content

68 update apps icon cherry pick #68

68 update apps icon cherry pick

68 update apps icon cherry pick #68

name: PR checks
on:
pull_request:
branches:
- development
- master
jobs:
pr_checks:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install
env:
CI: true
- name: Run Typescript
run: yarn tsc
env:
CI: true
# Fetch development branch and run changing test cases
- name: Run Unit tests
run: yarn test:ci
env:
CI: true
# Check expo packages incompatibilities
- name: Run Expo doctor
run: npx -y expo-doctor
env:
CI: true