Skip to content

feat: update actions on github pipeline #6

feat: update actions on github pipeline

feat: update actions on github pipeline #6

Workflow file for this run

name: API Testing Workflow
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install test dependencies
run: |
npm install
- name: Install server dependencies
run: |
cd test_server
npm install
- name: Start test server
run: |
cd test_server
nohup npm start &
- name: Run tests
run:
npm run test