Skip to content

docs: change comments and add coverage file #24

docs: change comments and add coverage file

docs: change comments and add coverage file #24

Workflow file for this run

name: Node.js CI (Booking-App Tests)
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run Tests
run: npm test
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
SECRET_KEY: ${{ secrets.SECRET_KEY }}
CLOUDINARY_URL: ${{ secrets.CLOUDINARY_URL }}
EXPIRES_IN: ${{ secrets.EXPIRES_IN }}
NODE_ENV: test
PORT: 4000