Skip to content

Commit

Permalink
Merge pull request #664 from hngprojects/cicd-clean
Browse files Browse the repository at this point in the history
added cicd
  • Loading branch information
Ravencodess authored Jul 25, 2024
2 parents 272c1b3 + 6aedb1d commit e511233
Show file tree
Hide file tree
Showing 4 changed files with 270 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/clean-cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@

name: Clean CI/CD Pipeline

on:
push:
branches:
- clean
paths-ignore:
- .github/workflows/**

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install dependencies
run: pnpm install

- name: Lint code
run: pnpm lint

- name: Build email
run: pnpm email:build

- name: Build project
run: pnpm build

- name: Run tests
run: pnpm run test:ci

deploy:
runs-on: ubuntu-latest
needs: build

steps:
- name: Deploy to dev environment
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
./deploy_dev.sh next
68 changes: 68 additions & 0 deletions .github/workflows/dev-cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@

name: Development CI/CD Pipeline

on:
push:
branches:
- dev
paths-ignore:
- .github/workflows/**

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install dependencies
run: pnpm install

- name: Lint code
run: pnpm lint

- name: Build email
run: pnpm email:build

- name: Build project
run: pnpm build

- name: Run tests
run: pnpm run test:ci

deploy:
runs-on: ubuntu-latest
needs: build

steps:
- name: Deploy to dev environment
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
./deploy_dev.sh next
67 changes: 67 additions & 0 deletions .github/workflows/prod-cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Production CI/CD Pipeline

on:
push:
branches:
- main
paths-ignore:
- .github/workflows/**

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install dependencies
run: pnpm install

- name: Lint code
run: pnpm lint

- name: Build email
run: pnpm email:build

- name: Build project
run: pnpm build

- name: Run tests
run: pnpm run test:ci

deploy:
runs-on: ubuntu-latest
needs: build

steps:
- name: Deploy to prod environment
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
./deploy_prod.sh next
67 changes: 67 additions & 0 deletions .github/workflows/staging-cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Staging CI/CD Pipeline

on:
push:
branches:
- staging
paths-ignore:
- .github/workflows/**

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install dependencies
run: pnpm install

- name: Lint code
run: pnpm lint

- name: Build email
run: pnpm email:build

- name: Build project
run: pnpm build

- name: Run tests
run: pnpm run test:ci

deploy:
runs-on: ubuntu-latest
needs: build

steps:
- name: Deploy to staging environment
uses: appleboy/[email protected]
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
script: |
./deploy_staging.sh next

0 comments on commit e511233

Please sign in to comment.