This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/.woodpecker.yml

24 lines
510 B
YAML
Raw Normal View History

2022-08-16 16:14:27 +05:30
pipeline:
2022-08-16 16:38:50 +05:30
buildfrontend:
image: node:14
2022-08-16 16:38:50 +05:30
commands:
- yarn install
- yarn test
- yarn test:postcss
- yarn test:sdk
- yarn build
2022-08-16 16:36:05 +05:30
2022-08-16 16:38:50 +05:30
deploy:
image: node:14
2022-08-16 16:38:50 +05:30
when:
event: push
branch: master
commands:
- make ci-deploy
secrets: [gitea_write_deploy_key, librepages_deploy_secret]
2022-08-16 16:14:27 +05:30
2022-08-16 16:38:50 +05:30
lint-frontend:
image: node:14
2022-08-16 16:38:50 +05:30
commands:
- yarn lint-ci