2022-08-16 16:14:27 +05:30
|
|
|
pipeline:
|
|
|
|
buildfrontend:
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- yarn install
|
|
|
|
- yarn test
|
|
|
|
- yarn test:postcss
|
|
|
|
- yarn test:sdk
|
|
|
|
- yarn build
|
2022-08-16 16:36:05 +05:30
|
|
|
|
|
|
|
deploy:
|
|
|
|
image: node
|
|
|
|
commands:
|
2022-08-16 16:14:27 +05:30
|
|
|
- make ci-deploy
|
2022-08-16 16:36:05 +05:30
|
|
|
secrets: [ gitea_write_deploy_key, librepages_deploy_secret ]
|
|
|
|
branches:
|
|
|
|
include: [ master ]
|
2022-08-16 16:14:27 +05:30
|
|
|
|
2022-08-16 16:36:05 +05:30
|
|
|
lint-frontend:
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- yarn lint-ci
|