Added circleci config
This commit is contained in:
parent
9f3807eb8a
commit
426e3c42b5
1 changed files with 14 additions and 0 deletions
14
.circleci/config.yml
Normal file
14
.circleci/config.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
version: 2.0
|
||||
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
- image: circleci/node:10
|
||||
steps:
|
||||
- checkout
|
||||
- run:
|
||||
name: Install dependencies
|
||||
command: npm install
|
||||
- run:
|
||||
name: Build Project
|
||||
command: npm run build
|
Reference in a new issue