Skip to content

Commit ba89280

Browse files
committed
feat: Added the requested files.
1 parent 478f62f commit ba89280

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Deploy on Merge to Dev
2+
on:
3+
push:
4+
branches:
5+
- covrize/cicd
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
- name: Setup environment
13+
run: |
14+
echo "Setting up the environment"
15+
- name: Execute command after merge
16+
run: |
17+
echo "Code merged into dev. Running deployment..."
18+
./deploy.sh

deploy.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm run deploy:test

0 commit comments

Comments
 (0)