Skip to content

fix(deps): update nest monorepo to v10 #13726

fix(deps): update nest monorepo to v10

fix(deps): update nest monorepo to v10 #13726

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x]
steps:
- name: SCM
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Yarn install, build, and test
run: |
yarn
yarn bootstrap
yarn test:cov
- name: Upload coverage to Codecov
if: matrix.node-version == '15.x'
uses: codecov/codecov-action@v1
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage/lcov.info
flags: unittests
name: codecov-umbrella