🐞 fix: 修正离开房间导致所有人跳回首页 #140
This file contains hidden or 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: 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 |