mirror of
https://github.com/Safe-Support-Chat/ocrcc-chatbox
synced 2024-11-05 02:45:25 +00:00
17 lines
321 B
YAML
17 lines
321 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: node:10
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: dep install
|
|
command: npm install
|
|
- run:
|
|
name: install codecov
|
|
command: npm install -g codecov
|
|
- run:
|
|
name: test
|
|
command: npm test && codecov
|