Skip to content

Commit

Permalink
Merge bdfd494 into 5915cd9
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed Apr 28, 2021
2 parents 5915cd9 + bdfd494 commit db0cd1e
Show file tree
Hide file tree
Showing 5 changed files with 833 additions and 2,266 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/coverall.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on: ["push", "pull_request"]
name: Test Coveralls
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: npm install, run test
run: |
npm install
npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

AsyncAPI Model SDK is a set of classes/functions for generating data models from JSON Schema and AsyncAPI spec.

[![Coverage Status](https://coveralls.io/repos/github/asyncapi/generator-model-sdk/badge.svg?branch=master)](https://coveralls.io/github/asyncapi/generator-model-sdk?branch=master)
---

## :loudspeaker: ATTENTION:
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// eslint-disable-next-line no-undef
module.exports = {
coverageReporters: [
'json',
'json-summary',
'lcov',
'text'
],
Expand Down

0 comments on commit db0cd1e

Please sign in to comment.