Skip to content

Bump body-parser and express #48

Bump body-parser and express

Bump body-parser and express #48

Workflow file for this run

name: Validate Code Practice
on:
push:
branches:
- main
- master
pull_request:
branches:
- '*'
types:
- opened
- reopened
- synchronize
jobs:
code-validator:
runs-on: ubuntu-latest
steps:
- name: Checks out code
uses: actions/checkout@v3
- name: Install Dependencies
run: npm install
- name: Run Prettier
run: npm run prettier
- name: Run lint
run: npm run lint