Delete postman-tests directory #105
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: Tests | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@master | |
- name: Install deps and start server | |
run: | | |
make bootstrap | |
make background | |
- name: Lint code | |
run: make lint | |
- name: Run Newman | |
run: node newman.js |