12 lines
193 B
YAML
12 lines
193 B
YAML
image: node:latest
|
|
build:
|
|
stage: build
|
|
script:
|
|
- echo "Build your app"
|
|
- yarn
|
|
- yarn build
|
|
- yarn pack
|
|
- echo "DONE!" # This way you know the job id in the next stage
|
|
|
|
|