Skip to content

ci : 브랜치λͺ… λ³€κ²½ #124

ci : 브랜치λͺ… λ³€κ²½

ci : 브랜치λͺ… λ³€κ²½ #124

Workflow file for this run

name: PR Build Check
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Run Build
run: yarn build
- name: Comment on PR
uses: thollander/actions-comment-pull-request@v2
if: success() && github.event_name == 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: '**βœ… Build 성곡!**'
comment_tag: build
mode: upsert