Skip to content

🐞 fix: 修正离开房间导致所有人跳回首页 #140

🐞 fix: 修正离开房间导致所有人跳回首页

🐞 fix: 修正离开房间导致所有人跳回首页 #140

Workflow file for this run

name: Build Package and Demo
on:
push:
branches: [ master ]
paths:
- 'game/**'
- 'lib/**'
- package*.json
- tsconfig.json
- tsdown.config.json
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies and build
run: |
npm ci
npm run build
cd game/embed
npm ci
npm run build
cd ..
npm ci
npm run build
cd dist
npm ci --omit=dev