1
Fork 0
theorangeone.net-legacy/.circleci/config.yml

23 lines
677 B
YAML
Raw Normal View History

2017-11-11 15:41:19 +00:00
version: 2.0
jobs:
build:
docker:
- image: circleci/node:6.10
2017-11-11 21:20:08 +00:00
environment:
2017-11-11 21:22:22 +00:00
- npm_config_loglevel: notice
2017-11-11 15:41:19 +00:00
steps:
- checkout
- run:
name: Install Hugo
command: wget https://github.com/gohugoio/hugo/releases/download/v0.34/hugo_0.34_Linux-64bit.deb -O /tmp/hugo.deb && sudo dpkg -i /tmp/hugo.deb
2017-11-11 15:44:54 +00:00
- run:
name: Install dependencies
command: npm install
2017-11-11 15:41:19 +00:00
- run:
name: Build site
2017-11-11 16:34:29 +00:00
command: make release
2017-11-11 15:41:19 +00:00
- run:
name: Run Tests
command: make test