Skip to content

Commit

Permalink
fix: CI/CD script 변경 및 git flow 구축
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunkkkk committed Aug 12, 2024
1 parent 63aec11 commit ed5862a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.cd.dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy
on:
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout source code
uses: actions/checkout@v3

- name: Install dependencies including TypeScript, React, and Vite
run: npm install --save-dev typescript @types/react @types/react-dom vite @vitejs/plugin-react @types/node
working-directory: ./Caecae

- name: Install other dependencies with Yarn
run: yarn install
working-directory: ./Caecae

- name: Build project
run: npm run build
working-directory: ./Caecae
5 changes: 1 addition & 4 deletions .github/workflows/ci.cd.prod.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
name: Deploy
on:
pull_request:
branches:
- cdTst
push:
branches:
- cdTst
- main
jobs:
build:
runs-on: ubuntu-24.04
Expand Down

0 comments on commit ed5862a

Please sign in to comment.