This commit is contained in:
parent
8e7902aa7f
commit
57afaba0f7
1 changed files with 8 additions and 0 deletions
|
@ -6,14 +6,22 @@ type: docker
|
|||
# If yes, deploy to vercel
|
||||
|
||||
steps:
|
||||
- name: install
|
||||
image: node
|
||||
commands:
|
||||
- yarn
|
||||
- name: build-game
|
||||
image: node
|
||||
commands:
|
||||
- yarn build:game
|
||||
depends_on:
|
||||
- install
|
||||
- name: build-pwa
|
||||
image: node
|
||||
commands:
|
||||
- yarn build:pwa
|
||||
depends_on:
|
||||
- install
|
||||
- name: test
|
||||
image: node
|
||||
commands:
|
||||
|
|
Reference in a new issue