Bump body-parser, @nestjs/platform-express and express #70
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: Lint | |
on: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
lint: | |
name: Run Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node lts (hydrogen) | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/hydrogen | |
- name: npm install | |
run: npm install | |
- name: run lint | |
run: npm run lint | |
format: | |
name: Run Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install node lts (hydrogen) | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/hydrogen | |
- name: npm install | |
run: npm install | |
- name: run format | |
run: npm run format |