Skip to content

Final tests setup

Final tests setup #12

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Add Render Remote
run: git remote add render https://github.com/sAchin-680/advanced_api.git
- name: Deploy to Render
run: git push render main