Skip to content

fixes https://github.com/zazuko/rdf-validate-shacl/issues/136 #163

fixes https://github.com/zazuko/rdf-validate-shacl/issues/136

fixes https://github.com/zazuko/rdf-validate-shacl/issues/136 #163

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- "16"
- "18"
- "20"
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npx c8 --reporter lcovonly npm test
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}