fix : 브라우저 캐시때문에 이전의 버전을 브라우저에서 보여주던 문제 해결 #135
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: 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 |