NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

.drone.yml 213B

1234567891011121314151617
  1. kind: pipeline
  2. name: default
  3. steps:
  4. - name: test
  5. image: node
  6. commands:
  7. - cd ./vue-theme
  8. - npm install
  9. - npm test
  10. - name: build
  11. image: node
  12. commands:
  13. - cd ./vue-theme
  14. - npm install
  15. - npm build