forked from mystiq/hydrogen-web
23 lines
510 B
YAML
23 lines
510 B
YAML
pipeline:
|
|
buildfrontend:
|
|
image: node:14
|
|
commands:
|
|
- yarn install
|
|
- yarn test
|
|
- yarn test:postcss
|
|
- yarn test:sdk
|
|
- yarn build
|
|
|
|
deploy:
|
|
image: node:14
|
|
when:
|
|
event: push
|
|
branch: master
|
|
commands:
|
|
- make ci-deploy
|
|
secrets: [gitea_write_deploy_key, librepages_deploy_secret]
|
|
|
|
lint-frontend:
|
|
image: node:14
|
|
commands:
|
|
- yarn lint-ci
|