chore(deps): update nest monorepo to v10.4.15 #667
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: Pull Request | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Lint, format, test and build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v3 | |
- name: Use Node LTS β¨ | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: yarn | |
- name: Install dependencies π¦οΈ | |
run: yarn install --immutable | |
- name: Lint π | |
run: yarn lint | |
- name: Format π | |
run: yarn format:check | |
- name: Test π§ͺ | |
run: yarn test | |
- name: Build π¨ | |
run: yarn build | |
- name: Upload coverage to Codecov π | |
uses: codecov/codecov-action@v3 |