24 lines
312 B
YAML
24 lines
312 B
YAML
|
image: alpine:latest
|
||
|
|
||
|
before_script:
|
||
|
- apk add yarn
|
||
|
- yarn global add node-gyp
|
||
|
- yarn install
|
||
|
|
||
|
cache:
|
||
|
paths:
|
||
|
- node_modules
|
||
|
|
||
|
test:
|
||
|
script:
|
||
|
- yarn run test:jest
|
||
|
|
||
|
build:
|
||
|
script:
|
||
|
- yarn run build
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- public/packs
|
||
|
- public/assets
|
||
|
expire_in: 1 week
|