⬆️ Upgrade deps #136
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: Game-Server | |
on: | |
push: | |
paths: | |
- ".github/workflows/game-server.yml" | |
- "apps/game-server/**" | |
- "packages/**" | |
branches: | |
- master | |
pull_request: | |
paths: | |
- ".github/workflows/game-server.yml" | |
- "apps/game-server/**" | |
- "packages/**" | |
defaults: | |
run: | |
working-directory: apps/game-server | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- run: corepack enable | |
- run: pnpm --filter root install | |
- run: pnpm --filter game-server... install | |
- run: pnpm run lint-check | |
- run: pnpm run type-check |