chore(deps): bump @angular/core from 10.0.9 to 10.2.5 #16
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: Main | |
on: pull_request | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v1 | |
- name: Setup node using nvm | |
run: nvm install | |
shell: bash -l {0} | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Resolve cached node modules | |
uses: actions/cache@v2 | |
with: | |
path: | | |
**/node_modules | |
${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}- | |
- name: Install dependencies | |
run: yarn --frozen-lockfile --ignore-engines --ignore-optional --non-interactive --silent --ignore-scripts | |
env: | |
HUSKY_SKIP_INSTALL: true | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test:lib | |
- name: Build | |
run: yarn build:lib | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unittests | |
name: rehooktive |