Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/ci-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: ci-test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
deno-version: ["lts", "canary"]

steps:
- uses: actions/checkout@v7

- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: ${{ matrix.deno-version }}

- name: lint
run: deno lint

- name: test
run: deno test --allow-all

- name: audit
run: deno audit
14 changes: 0 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,3 @@ jobs:

- name: publish to jsr
run: deno publish

- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: "latest"

- name: build npm package
run: deno task build

- name: publish to npm
working-directory: npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ To read & normalize RSS/ATOM/JSON feed data.

[![JSR](https://jsr.io/badges/@extractus/feed-extractor)](https://jsr.io/@extractus/feed-extractor)
[![npm version](https://badge.fury.io/js/@extractus%2Ffeed-extractor.svg)](https://badge.fury.io/js/@extractus%2Ffeed-extractor)
![CI test & release](https://github.com/extractus/feed-extractor/workflows/release/badge.svg)
![CI test](https://github.com/extractus/feed-extractor/workflows/ci-test/badge.svg)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@extractus/feed-extractor",
"version": "8.0.1",
"version": "8.0.2",
"description": "To read and normalize RSS/ATOM/JSON feed data",
"homepage": "https://github.com/extractus/feed-extractor",
"repository": {
Expand Down