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
|
# If yes, deploy to vercel
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: install
|
||||||
|
image: node
|
||||||
|
commands:
|
||||||
|
- yarn
|
||||||
- name: build-game
|
- name: build-game
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- yarn build:game
|
- yarn build:game
|
||||||
|
depends_on:
|
||||||
|
- install
|
||||||
- name: build-pwa
|
- name: build-pwa
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- yarn build:pwa
|
- yarn build:pwa
|
||||||
|
depends_on:
|
||||||
|
- install
|
||||||
- name: test
|
- name: test
|
||||||
image: node
|
image: node
|
||||||
commands:
|
commands:
|
||||||
|
|
Reference in a new issue