build(deps): bump body-parser and express in /apps/portal #834
Workflow file for this run
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: Standard Nest.js App Flow | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Change to backend directory and install dependencies | |
run: cd apps/api && npm install | |
- name: Change to backend directory and Lint code | |
run: cd apps/api && npm run lint | |
build: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Change to backend directory and install dependencies | |
run: cd apps/api && npm install | |
- name: Change to backend directory and Build Nest.js app | |
run: cd apps/api && npm run build |