Skip to content

Commit

Permalink
chore: update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bcomnes committed Sep 7, 2020
1 parent 6213231 commit 69eeb98
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 17 deletions.
4 changes: 4 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# These are supported funding model platforms

github: ['bcomnes']
custom: ['https://bret.io']
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Basic dependabot.yml file with
# minimum configuration for two package managers

version: 2
updates:
# Enable version updates for npm
- package-ecosystem: "npm"
# Look for `package.json` and `lock` files in the `root` directory
directory: "/"
# Check the npm registry for updates every day (weekdays)
schedule:
interval: "daily"
# Enable updates to github actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: tests

on: [push]

jobs:
test:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [14]

steps:
- uses: actions/checkout@v2.3.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.1
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm test
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# jsonfeed-to-rss
[![npm version][2]][3] [![build status][4]][5] [![coverage][12]][13]
[![npm version][2]][3] [![build status][4]][5]
[![downloads][8]][9] [![js-standard-style][10]][11]

Convert a JSON feed to an rss feed ([RSS 2.0.11][rss]). Supports the [@xmlns:itunes][itunes] iTunes RSS extensions and [best practices for podcasts][bp], [xmlns:dc][dc] Dublin Core author names, and the [xmlns:content][content] RDF Site Summary 1.0 Modules: Content encoded content extension.
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"@tap-format/spec": "^0.2.0",
"auto-changelog": "^1.16.2",
"budo": "^11.2.2",
"coveralls": "^3.0.0",
"cpx2": "^2.0.0",
"dependency-check": "^4.1.0",
"gh-release": "^3.5.0",
Expand Down Expand Up @@ -58,7 +57,6 @@
"clean": "rimraf build && mkdirp build",
"debug": "node --nolazy --inspect-brk=9229 node_modules/.bin/tape 'test.js'",
"prepublishOnly": "git push --follow-tags && gh-release",
"report": "nyc report --reporter=text-lcov | coveralls",
"start": "run-s watch",
"test": "run-s test:*",
"test:deps": "dependency-check package.json --missing --unused --no-dev",
Expand Down

0 comments on commit 69eeb98

Please sign in to comment.