-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from boostcampwm-2022/dev
3주차 릴리즈 v0.2
- Loading branch information
Showing
158 changed files
with
4,002 additions
and
559 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Frontend dev cd | ||
|
||
on: | ||
push: | ||
branches: ['dev'] | ||
paths: | ||
- 'packages/client/**' | ||
- '.github/workflows/fe-dev-cd.yml' | ||
|
||
jobs: | ||
cd: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: './packages/client' | ||
|
||
steps: | ||
- name: checkout to the branch | ||
uses: actions/checkout@v3 | ||
|
||
- name: node set-up | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.6.0 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Inject Environment Variables | ||
env: | ||
FE_ENV: ${{ secrets.FE_ENV }} | ||
run: echo "$FE_ENV" > .env | ||
|
||
- name: Build | ||
run: npm run build | ||
env: | ||
CI: false | ||
|
||
- name: Deploy to Remote Server | ||
uses: appleboy/scp-action@master | ||
with: | ||
host: ${{ secrets.REMOTE_SSH_HOST }} | ||
username: ${{ secrets.REMOTE_SSH_USERNAME }} | ||
password: ${{ secrets.REMOTE_SSH_PASSWORD }} | ||
port: ${{ secrets.REMOTE_SSH_PORT }} | ||
source: 'packages/client/build/*' | ||
target: '~/client/build' | ||
strip_components: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Frontend dev ci | ||
|
||
on: | ||
pull_request: | ||
branches: [dev] | ||
paths: | ||
- 'packages/client' | ||
# - 'packages/client/**' | ||
# - '.github/workflows/fe-dev-ci.yml' | ||
|
||
jobs: | ||
ci: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: './packages/client' | ||
|
||
steps: | ||
- name: checkout to the branch | ||
uses: actions/checkout@v3 | ||
|
||
- name: node set-up | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.6.0 | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Inject Environment Variables | ||
env: | ||
FE_ENV: ${{ secrets.FE_ENV }} | ||
run: echo "$FE_ENV" > .env | ||
|
||
- name: Test | ||
run: npm run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,6 +181,7 @@ dist | |
|
||
node_modules | ||
package-lock.json | ||
build | ||
|
||
*.sublime* | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.