feat: 대기방 정보 SSE로 교체 (#144) #17
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 ~/ |