fix: 새로고침 할때 가끔 채팅구독이 안되는 문제 해결 (#142) #16
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: Dev CI/CD | |
on: | |
push: | |
branches: [ dev ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: | |
group: Default | |
labels: [ self-hosted, dev ] | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install | |
- name: Run build | |
run: npm run build | |
- name: 빌드 파일 | |
run: cp -rf ./dist ~/ |