[Feat] CI용 git actions 추가 #1
Workflow file for this run
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
name: Test of pull request main from other branch | |
on: | |
pull_request: | |
branches: main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Set Yarn Version | |
run: | | |
yarn set version 4.1.0 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build with yarn | |
run: yarn run build | |
env: | |
VITE_CLIENT_SECRET: ${{ secrets.VITE_CLIENT_SECRET }} | |
VITE_KAKAO_CLIENT_ID: ${{ secrets.VITE_KAKAO_CLIENT_ID }} | |
VITE_KAKAO_REDIRECT_URI: ${{ secrets.VITE_KAKAO_REDIRECT_URI }} |