Skip to content

Commit d88436d

Browse files
authored
Merge pull request #7 from rdfjs-base/deps
chore: updated deps, updated build status badge
2 parents 554b4fe + 38d0868 commit d88436d

File tree

3 files changed

+17
-18
lines changed

3 files changed

+17
-18
lines changed
Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
name: CI
2-
on: push
1+
name: Test
2+
on:
3+
- pull_request
4+
- push
35
jobs:
46
test:
57
runs-on: ubuntu-20.04
68
strategy:
79
matrix:
810
node:
9-
- '12'
1011
- '14'
1112
- '16'
13+
- '18'
14+
- '19'
1215
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v2
16+
- uses: actions/checkout@v3
17+
- uses: actions/setup-node@v3
1518
with:
1619
node-version: ${{ matrix.node }}
1720
- run: npm install
1821
- run: npm test
19-
- run: npm run coverage
22+
- uses: codecov/codecov-action@v3

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# @rdfjs/fetch
2-
3-
[![Build Status](https://travis-ci.org/rdfjs-base/fetch.svg?branch=master)](https://travis-ci.org/rdfjs-base/fetch)
4-
2+
[![build status](https://img.shields.io/github/workflow/status/rdfjs-base/fetch/Test)](https://github.com/rdfjs-base/fetch/actions/workflows/test.yaml)
53
[![npm version](https://img.shields.io/npm/v/@rdfjs/fetch.svg)](https://www.npmjs.com/package/@rdfjs/fetch)
64

75
Wrapper for fetch to simplify sending and retrieving RDF data.

package.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"type": "module",
66
"main": "index.js",
77
"scripts": {
8-
"coverage": "codecov",
98
"test": "stricter-standard && c8 --reporter=lcov --reporter=text-summary mocha"
109
},
1110
"repository": {
@@ -24,16 +23,15 @@
2423
},
2524
"homepage": "https://github.com/rdfjs-base/fetch",
2625
"dependencies": {
27-
"@rdfjs/dataset": "^1.1.1",
28-
"@rdfjs/fetch-lite": "^3.0.0",
29-
"@rdfjs/formats-common": "^2.2.0"
26+
"@rdfjs/dataset": "^2.0.1",
27+
"@rdfjs/fetch-lite": "^3.2.1",
28+
"@rdfjs/formats-common": "^3.1.0"
3029
},
3130
"devDependencies": {
32-
"@rdfjs/sink-map": "^1.0.1",
33-
"c8": "^7.10.0",
34-
"codecov": "^3.8.3",
35-
"mocha": "^9.1.2",
36-
"nock": "^13.1.3",
31+
"@rdfjs/sink-map": "^2.0.0",
32+
"c8": "^7.12.0",
33+
"mocha": "^10.2.0",
34+
"nock": "^13.2.9",
3735
"stricter-standard": "^0.2.0"
3836
}
3937
}

0 commit comments

Comments
 (0)