Skip to content

Commit

Permalink
Merge pull request #122 from extractus/dev
Browse files Browse the repository at this point in the history
v7.0.9
  • Loading branch information
ndaidong authored Jan 22, 2024
2 parents 28eef1d + 511c4ff commit 581818f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
node_version: [18.x, 20.x, 21.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: setup Node.js v${{ matrix.node_version }}
uses: actions/setup-node@v4
Expand All @@ -31,18 +31,30 @@ jobs:
npm run build --if-present
npm run test
- name: Report Coveralls
- name: Coveralls Parallel
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
finish:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: "run-18.x,run-20.x,run-21.x"


2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"imports": {
"cross-fetch": "./src/deno/cross-fetch.js",
"html-entities": "https://esm.sh/[email protected]",
"fast-xml-parser": "https://esm.sh/[email protected].2",
"fast-xml-parser": "https://esm.sh/[email protected].3",
"bellajs": "https://esm.sh/[email protected]"
}
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "7.0.8",
"version": "7.0.9",
"name": "@extractus/feed-extractor",
"description": "To read and normalize RSS/ATOM/JSON feed data",
"homepage": "https://extractor-demos.pages.dev",
Expand Down Expand Up @@ -41,15 +41,15 @@
"dependencies": {
"bellajs": "^11.1.2",
"cross-fetch": "^4.0.0",
"fast-xml-parser": "^4.3.2",
"fast-xml-parser": "^4.3.3",
"html-entities": "^2.4.0"
},
"devDependencies": {
"esbuild": "^0.19.8",
"eslint": "^8.55.0",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"https-proxy-agent": "^7.0.2",
"jest": "^29.7.0",
"nock": "^13.4.0"
"nock": "^13.5.0"
},
"keywords": [
"extractor",
Expand Down

0 comments on commit 581818f

Please sign in to comment.