Skip to content

Commit

Permalink
configured github actions yml file for cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiraj-ku committed Aug 28, 2024
1 parent 15b520f commit 0bcc36b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: splitBhai Backend

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: checkout code repo
uses: actions/checkout@v3

- name: set up node js
uses: actions/setup-node@v3
with:
node-version: "18"

- name: install dependencies
run: npm install

0 comments on commit 0bcc36b

Please sign in to comment.