Skip to content

ci pipeline configuration pipeline implemented #152

ci pipeline configuration pipeline implemented

ci pipeline configuration pipeline implemented #152

Workflow file for this run

name: API CI
on:
push:
branches: [main, master, develop]
pull_request:
branches: [main, master, develop]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Build Application
run: npm run build
- name: Run Tests
run: npm test