Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
prof-schnitzel committed Aug 1, 2020
2 parents 9ecf1bd + f475c48 commit 2052ec5
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Node.js Package

name: build
on:
release:
types: [created]
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on: ["push", "pull_request"]

name: Coveralls Code Coverage

jobs:

build:
name: Build
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v1

- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
node-version: 10.x

- name: npm install, npm run test
run: |
npm install
npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# yml-config-reader - YAML Configuration Reader for Node.js

![Node.js Package](https://github.com/prof-schnitzel/yml-config-reader/workflows/Node.js%20Package/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/prof-schnitzel/yml-config-reader/badge.svg?branch=master)](https://coveralls.io/github/prof-schnitzel/yml-config-reader?branch=master)

This plugin provides a way to configure your node project based on YAML files. The configuration
reader itself is really small since almost everything is done by
[js-yaml](https://github.com/nodeca/js-yaml) or [lodash](https://github.com/lodash/lodash). You can
Expand Down

0 comments on commit 2052ec5

Please sign in to comment.