Add publish to wiki #291
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: codecov | |
# | |
#on: | |
# push: | |
# branches: | |
# - master | |
# pull_request: | |
# branches: | |
# - master | |
# | |
#jobs: | |
# run: | |
# runs-on: ubuntu-18.04 # IMPORTANT!!! this LINUX os should be the same as in build-and-test and release workflows! this is for making sure caches are used in most efficient way | |
# | |
# steps: | |
# - name: Check out Git repository | |
# uses: actions/checkout@v2.3.4 | |
# | |
# - name: Setup Node.js environment | |
# uses: actions/setup-node@v2.1.4 | |
# with: | |
# node-version: '12' | |
# | |
# - name: Get yarn cache directory path | |
# id: yarn-cache-dir-path | |
# run: echo "::set-output name=dir::$(yarn cache dir)" | |
# | |
# - uses: actions/cache@v2.1.3 | |
# id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
# with: | |
# path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
# key: ubuntu-18.04-yarn-${{ hashFiles('**/yarn.lock') }} | |
# restore-keys: | | |
# ubuntu-18.04-yarn- | |
# | |
# - name: yarn install in ./app/client | |
# run: | | |
# cd ./app/client | |
# yarn install --frozen-lockfile | |
# | |
# - name: yarn install in ./ | |
# run: yarn install --frozen-lockfile | |
# | |
# - name: yarn install in ./app | |
# run: | | |
# cd ./app | |
# yarn install --frozen-lockfile | |
# | |
# - name: yarn build | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# run: yarn build | |
# | |
# - name: yarn test | |
# run: yarn test | |
# | |
# - name: yarn coverage | |
# run: yarn coverage | |
# | |
# - name: Upload app coverage to Codecov | |
# uses: codecov/codecov-action@v1.0.12 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# file: ./coverage/clover.xml | |
# flags: unittests | |
# name: codecov-umbrella | |
# fail_ci_if_error: true | |
# | |
# - name: Upload app/client coverage to Codecov | |
# uses: codecov/codecov-action@v1.0.12 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# file: ./app/client/coverage/clover.xml | |
# flags: unittests | |
# name: codecov-umbrella | |
# fail_ci_if_error: true |