Skip to content

Commit 52f501c

Browse files
author
Memoona Iftikhar
committed
Task 8: Added Node.js CI/CD pipeline
1 parent 6c78cc2 commit 52f501c

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/cicd.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI/CD
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Set up Node.js
12+
uses: actions/setup-node@v2
13+
with:
14+
node-version: '14'
15+
- run: npm install
16+
- run: npm test

0 commit comments

Comments
 (0)