fix: uncaught exception for openApp when app not installed #726
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: build-and-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Set up Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
# PreInstall | |
- name: add gulp, codecov | |
run: npm install -g gulp-cli codecov | |
- name: yarn install, build and test | |
run: | | |
yarn --frozen-lockfile | |
yarn test -- --colors --forceExit | |
yarn coverage | |
codecov -f coverage/*.json -t ${{ secrets.CODE_COV }} | |
env: | |
CI: true |