Skip to content

Commit 606f9a7

Browse files
authored
Merge pull request #297 from danmactough/maintenance
Maintenance
2 parents 0a734f8 + 9d2ebe6 commit 606f9a7

File tree

6 files changed

+1298
-730
lines changed

6 files changed

+1298
-730
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
build:
12+
strategy:
13+
matrix:
14+
node-version: [10.x, 20.x, 22.x, 24.x, 25.x]
15+
fail-fast: false
16+
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout Repository
21+
uses: actions/checkout@v6
22+
23+
- name: Use Nodejs ${{ matrix.node-version }}
24+
uses: actions/setup-node@v6
25+
with:
26+
node-version: ${{ matrix.node-version }}
27+
28+
- name: Install dependencies
29+
run: npm install
30+
31+
- name: Run Tests
32+
run: npm test

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/dubnium
1+
lts/krypton

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
# Feedparser - Robust RSS, Atom, and RDF feed parsing in Node.js
1+
# Feedparser - Robust RSS, Atom, and RDF feed parsing in Node.js
22

3-
[![Greenkeeper badge](https://badges.greenkeeper.io/danmactough/node-feedparser.svg)](https://greenkeeper.io/)
4-
5-
[![Join the chat at https://gitter.im/danmactough/node-feedparser](https://badges.gitter.im/danmactough/node-feedparser.svg)](https://gitter.im/danmactough/node-feedparser?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6-
7-
[![Build Status](https://secure.travis-ci.org/danmactough/node-feedparser.png?branch=master)](https://travis-ci.org/danmactough/node-feedparser)
3+
[![CI](https://github.com/danmactough/node-feedparser/actions/workflows/ci.yml/badge.svg)](https://github.com/danmactough/node-feedparser/actions/workflows/ci.yml)
84

95
[![NPM](https://nodei.co/npm/feedparser.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/feedparser/)
106

0 commit comments

Comments
 (0)