1
0
Fork 0
mirror of synced 2025-04-04 05:33:32 +03:00

Compare commits

...

4 commits

Author SHA1 Message Date
Alex Lushpai
d6b1f0d21d
Update product name, cleanup annotations (#13) 2020-12-15 13:35:11 +03:00
Akolzin Dmitry
3b49e487b6
install dependencies for gh pages and deploy (#12) 2020-11-26 16:23:46 +03:00
Akolzin Dmitry
fa5499b9fe
Move CI to GitHub Actions (#11) 2020-11-26 16:19:29 +03:00
Alex Lushpai
bddf54e9fe
Update README.md 2020-11-12 14:08:19 +03:00
5 changed files with 76 additions and 57 deletions

66
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,66 @@
name: ci
on:
push:
branches:
- '**'
tags-ignore:
- '*.*'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 13.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Coverage
run: |
npm install -g codecov
npm run report-coverage
gh-pages:
needs: ['test']
if: success() && github.event_name == 'push' && github.repository_owner == 'retailcrm' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install dependencies
run: npm install
- name: Generate doc
run: npm run doc
- name: Deploy doc
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out
deploy:
needs: ['test']
if: success() && github.event_name == 'push' && github.repository_owner == 'retailcrm' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}

View file

@ -1,46 +0,0 @@
os: linux
language: node_js
if: tag IS blank
stages:
- test
- gh pages
- npm deploy
script: npm run test
jobs:
include:
- node_js: 10
- node_js: 12
- node_js: 13
- node_js: 14
after_success:
- npm install -g codecov
- npm run report-coverage
- stage: gh pages
node_js: 10
script: skip
before_deploy: npm run doc
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
keep-history: true
local-dir: out
on:
branch: master
if: branch = master AND type = push AND fork = false
- stage: npm deploy
node_js: 10
script: skip
before_deploy: npm run build
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_API_KEY
skip-cleanup: true
on:
branch: master
if: branch = master AND type = push AND fork = false

View file

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2018 retailCRM
Copyright (c) 2018-2020 RetailDriver LLC
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -1,11 +1,10 @@
[![Build Status](https://img.shields.io/travis/retailcrm/mg-bot-api-client-js/master.svg?logo=travis&style=flat-square)](https://travis-ci.org/retailcrm/mg-bot-api-client-js)
[![GitHub release](https://img.shields.io/github/release/retailcrm/mg-bot-api-client-js.svg?style=flat-square)](https://github.com/retailcrm/mg-bot-api-client-js/releases)
[![Node version](https://img.shields.io/node/v/mg-api-client.svg?style=flat-square)](https://www.npmjs.com/package/mg-api-client)
[![Build Status](https://github.com/retailcrm/mg-bot-api-client-js/workflows/ci/badge.svg)](https://github.com/retailcrm/mg-bot-api-client-js/actions)
[![Coverage](https://img.shields.io/codecov/c/gh/retailcrm/mg-bot-api-client-js/master.svg?logo=codecov&logoColor=white)](https://codecov.io/gh/retailcrm/mg-bot-api-client-js)
[![Latest stable](https://img.shields.io/npm/v/mg-api-client.svg?logo=npm&logoColor=white)](https://npmjs.com/package/mg-api-client)
[![Node version](https://img.shields.io/node/v/mg-api-client.svg?logo=node.js&logoColor=white)](https://www.npmjs.com/package/mg-api-client)
[![JS Doc](https://img.shields.io/badge/doc-github_pages-green)](https://retailcrm.github.io/mg-bot-api-client-js/)
# retailCRM Message Gateway Bot API JS client
This is js retailCRM bot API client.
# Message Gateway Bot API JavaScript client
# Installation
```

View file

@ -1,9 +1,9 @@
{
"name": "mg-api-client",
"description": "JS client for retailCRM Bot API",
"description": "JavaScript client for Message Gateway Bot API",
"tags": [
"API",
"retailCRM",
"RetailCRM",
"Bot",
"Chat"
],
@ -14,7 +14,7 @@
"test": "./node_modules/.bin/nyc ./node_modules/.bin/_mocha --require @babel/register ./tests/.",
"report-coverage": "./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"author": "retailCRM",
"author": "RetailCRM",
"license": "MIT",
"main": "./dist/index.js",
"bugs": {