Run Regression Tests #2225
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: Run Regression Tests | |
on: | |
schedule: | |
- cron: '*/15 * * * *' # Runs every 15 minutes | |
workflow_dispatch: | |
jobs: | |
run-newman-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install Newman | |
run: | | |
npm install -g newman | |
- name: Run Newman Tests | |
run: | | |
newman run qa_tests/Boilerplate-status-page.postman_collection.json -r json --reporter-json-export=result.json --suppress-exit-code | |
- name: Copy result.json to server | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
source: "result.json" | |
target: "/home/${{ secrets.USERNAME }}/hng_boilerplate_python_fastapi_web/staging" | |
- name: Deploy to Server | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
script: | | |
cd hng_boilerplate_python_fastapi_web/staging | |
python3 update_api_status.py | |