Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/Integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Integration

on:
push :
branches : ["main"]
pull_request:
branches : ["main"]

jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 23
- name : Install dependencies
run: npm i
- name: Run test
run: npm test


3 changes: 1 addition & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"version": "1.0.0",
"main": "index.js",
"scripts": {

"test": "echo \"Error: no test specified\" && exit 1"
"test": "node --test"
},
"type": "module",
"author": "Siddhesh kabra",
Expand Down
Loading