This repository has been archived on 2022-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
|
image: node:12
|
|
|
|
cache:
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
paths:
|
|
- node_modules/
|
|
|
|
before_script:
|
|
- node --version
|
|
- yarn --version
|
|
- yarn
|
|
|
|
test:
|
|
script:
|
|
- yarn test
|
|
|
|
pages:
|
|
stage: deploy
|
|
only:
|
|
- schedules
|
|
script:
|
|
- yarn build
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|