A
Size: a a a
YP
YP
YP
YP
BG
YP
YP
YP
stages:
- build
- test
build_dev:
stage: build
variables:
BUILD_ENV: develop
except:
- master
script:
- yarn install
- yarn build-client
cache:
untracked: true
policy: push
key: “test”
paths:
- node_modules/
test_dev:
stage: test
except:
- master
script:
- yarn install
- yarn test:jest
cache:
untracked: true
policy: pull
key: “test”
paths:
- node_modules/
YP
YP
YP
YP
YP