File tree Expand file tree Collapse file tree 3 files changed +8
-11
lines changed
Expand file tree Collapse file tree 3 files changed +8
-11
lines changed Original file line number Diff line number Diff line change 1- name : CI
1+ name : Continuous Integration (CI)
22
33on :
44 push :
99 audit :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v4
13- - uses : actions/setup-node@v4
12+ - uses : actions/checkout@v5
13+ - uses : actions/setup-node@v5
1414 with :
1515 node-version-file : .nvmrc
1616 - run : npm i
@@ -20,14 +20,12 @@ jobs:
2020 strategy :
2121 matrix :
2222 os : [macos-latest, ubuntu-latest, windows-latest]
23- node_version : [24]
2423 runs-on : ${{ matrix.os }}
2524 steps :
26- - uses : actions/checkout@v4
27- - uses : actions/setup-node@v4
25+ - uses : actions/checkout@v5
26+ - uses : actions/setup-node@v5
2827 with :
2928 node-version-file : .nvmrc
3029 - run : npm i
31- - run : npm run build
32- - run : npm run build:test
30+ - run : npx tsc
3331 - run : npm test
Original file line number Diff line number Diff line change 11# RDF/JS Wrapper
22
3- [ ![ Test Workflow] ( https://github.com/theodi/rdfjs-wrapper/actions/workflows/ci.yml/badge.svg?branch=main )] ( https://github.com/theodi/rdfjs-wrapper/actions/workflows/ci.yml?query=workflow%3ACI+ branch%3Amain )
3+ [ ![ Test Workflow] ( https://github.com/theodi/rdfjs-wrapper/actions/workflows/ci.yml/badge.svg?branch=main )] ( https://github.com/theodi/rdfjs-wrapper/actions/workflows/ci.yml?query=branch%3Amain )
44[ ![ npm] ( https://img.shields.io/npm/v/rdfjs-wrapper )] ( https://www.npmjs.com/package/rdfjs-wrapper )
55
66An [ RDF/JS] ( https://rdf.js.org/data-model-spec/ ) object mapping library.
Original file line number Diff line number Diff line change 99 "." : " ./dist/mod.js"
1010 },
1111 "scripts" : {
12- "build" : " tsc" ,
13- "start" : " npm run test" ,
12+ "start" : " npm test" ,
1413 "test" : " tsc && tsc -p test && node --test \" **/*.test.js\" "
1514 },
1615 "keywords" : [
You can’t perform that action at this time.
0 commit comments