Improve random draft: Ensure blade holder will be last on kings court #2792
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
jobs: | |
game-server-build: | |
name: Game Server Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build game-server Docker image | |
run: docker build . -f ./game_server.Dockerfile | |
website-build: | |
name: Website Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build website Docker image | |
run: docker build . -f ./website.Dockerfile | |
# build-assets: | |
# name: Build game assets | |
# runs-on: ubuntu-latest | |
# defaults: | |
# run: | |
# working-directory: ./agot-bg-game-server | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - uses: actions/setup-node@v3 | |
# with: | |
# node-version: 16 | |
# - name: Install dependencies | |
# run: yarn install --frozen-lockfile | |
# - name: Build assets | |
# run: yarn run generate-json-schemas && yarn run build-client |