Skip to content

Commit 99001d9

Browse files
Cleanup CI
1 parent 86b5cc3 commit 99001d9

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: Continuous Integration (CI)
22

33
on:
44
push:
@@ -9,8 +9,8 @@ jobs:
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

66
An [RDF/JS](https://rdf.js.org/data-model-spec/) object mapping library.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
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": [

0 commit comments

Comments
 (0)