18 lines
425 B
YAML
18 lines
425 B
YAML
version: 2.0
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:6.10
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Install dependencies
|
|
command: npm install
|
|
- run:
|
|
name: Build
|
|
command: npm run build
|
|
|
|
- deploy:
|
|
name: Deploy to Github Pages
|
|
command: ./.circleci/deploy.sh
|