11 lines
299 B
YAML
11 lines
299 B
YAML
version: 2.1
|
|
orbs:
|
|
shellcheck: circleci/shellcheck@1.3.15
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:4.8.2 # the primary container, where your job's commands are run
|
|
steps:
|
|
- checkout # check out the code in the project directory
|
|
- run: make check
|