chore(deps): update dependency type-coverage to ^2.29.7 #220
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: CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
ci: | |
name: Lint and Test with Node.js ${{ matrix.node }} | |
strategy: | |
matrix: | |
node: | |
- 12 | |
- 14 | |
- 16 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@master | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Link Yarn global binaries into PATH | |
run: echo "$(yarn global bin)" >> $GITHUB_PATH | |
- name: Install Dependencies | |
run: yarn --frozen-lockfile | |
- name: Build, Lint and test | |
run: | | |
yarn lint | |
yarn test | |
yarn build | |
yarn typecov | |
env: | |
EFF_NO_LINK_RULES: true | |
PARSER_NO_WATCH: true | |
- name: Codecov | |
run: | | |
yarn global add codecov codacy-coverage | |
codecov | |
cat ./coverage/lcov.info | codacy-coverage -u rx-ts -n node-fs-storage | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
CODACY_ACCOUNT_TOKEN: ${{ secrets.CODACY_ACCOUNT_TOKEN }} | |
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} |