YP
Size: a a a
YP
YP
YP
YP
YP
YP
stages:
- build
- test
build_dev:
stage: build
variables:
BUILD_ENV: develop
except:
- master
script:
- yarn install
- yarn build-client
cache:
key: ${CI_PIPELINE_ID}
paths:
- node_modules/
test_dev:
stage: test
except:
- master
script:
- yarn test:jest
cache:
key: ${CI_PIPELINE_ID}
paths:
- node_modules/
YP
YP
YP
YP