Add logger using morgan #118
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: Newman Run | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
paths: [ '!PostmanCollections/**' , '!./github/**' ] | |
pull_request: | |
branches: [ "main", "dev" ] | |
jobs: | |
newman: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code and Install | |
uses: actions/checkout@v3 | |
- run: npm install | |
- run: npm run generateoas | |
- run: npm start & npx wait-on http://localhost:3000 | |
- run: npm test | |