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

19 lines
456 B
YAML
Raw Normal View History

2022-08-16 16:14:27 +05:30
pipeline:
2022-08-16 16:38:50 +05:30
buildfrontend:
2022-08-16 16:52:22 +05:30
image: node:16
2022-08-16 16:38:50 +05:30
commands:
2022-08-16 16:47:23 +05:30
- yarn install --prefer-offline --frozen-lockfile
2022-08-16 16:38:50 +05:30
- yarn test
2022-08-16 16:47:23 +05:30
- yarn run lint-ci
- yarn run tsc
2022-08-16 16:38:50 +05:30
- yarn build
2022-08-16 16:36:05 +05:30
2022-08-16 16:38:50 +05:30
deploy:
image: python
2022-08-16 16:38:50 +05:30
when:
event: push
branch: master
commands:
- make ci-deploy
2022-08-16 17:05:59 +05:30
secrets: [ GITEA_WRITE_DEPLOY_KEY, LIBREPAGES_DEPLOY_SECRET ]