Skip to content

Commit 581818f

Browse files
authored
Merge pull request #122 from extractus/dev
v7.0.9
2 parents 28eef1d + 511c4ff commit 581818f

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

.github/workflows/ci-test.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
node_version: [18.x, 20.x, 21.x]
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: setup Node.js v${{ matrix.node_version }}
2121
uses: actions/setup-node@v4
@@ -31,18 +31,30 @@ jobs:
3131
npm run build --if-present
3232
npm run test
3333
34-
- name: Report Coveralls
34+
- name: Coveralls Parallel
3535
uses: coverallsapp/github-action@v2
3636
with:
37+
flag-name: run-${{ join(matrix.*, '-') }}
38+
parallel: true
3739
github-token: ${{ secrets.GITHUB_TOKEN }}
3840

3941
- name: cache node modules
40-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4143
with:
4244
path: ~/.npm
4345
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
4446
restore-keys: |
4547
${{ runner.os }}-node-
4648
49+
finish:
50+
needs: test
51+
if: ${{ always() }}
52+
runs-on: ubuntu-latest
53+
steps:
54+
- name: Coveralls Finished
55+
uses: coverallsapp/github-action@v2
56+
with:
57+
parallel-finished: true
58+
carryforward: "run-18.x,run-20.x,run-21.x"
4759

4860

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"imports": {
33
"cross-fetch": "./src/deno/cross-fetch.js",
44
"html-entities": "https://esm.sh/html-entities@2.4.0",
5-
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.3.2",
5+
"fast-xml-parser": "https://esm.sh/fast-xml-parser@4.3.3",
66
"bellajs": "https://esm.sh/bellajs@11.1.2"
77
}
88
}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "7.0.8",
2+
"version": "7.0.9",
33
"name": "@extractus/feed-extractor",
44
"description": "To read and normalize RSS/ATOM/JSON feed data",
55
"homepage": "https://extractor-demos.pages.dev",
@@ -41,15 +41,15 @@
4141
"dependencies": {
4242
"bellajs": "^11.1.2",
4343
"cross-fetch": "^4.0.0",
44-
"fast-xml-parser": "^4.3.2",
44+
"fast-xml-parser": "^4.3.3",
4545
"html-entities": "^2.4.0"
4646
},
4747
"devDependencies": {
48-
"esbuild": "^0.19.8",
49-
"eslint": "^8.55.0",
48+
"esbuild": "^0.19.11",
49+
"eslint": "^8.56.0",
5050
"https-proxy-agent": "^7.0.2",
5151
"jest": "^29.7.0",
52-
"nock": "^13.4.0"
52+
"nock": "^13.5.0"
5353
},
5454
"keywords": [
5555
"extractor",

0 commit comments

Comments
 (0)