Skip to content

Commit

Permalink
👷 Setup GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas2D committed May 12, 2022
1 parent abe5154 commit 01e2090
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
"rdf-data-factory": "^1.1.0"
},
"devDependencies": {
"@naxmefy/jdbc": "^0.13.3",
"jsonstream2": "^3.0.0",
"lodash": ">=4.x",
"promise-based-task": "^1.3.0",
"rdf-data-factory": "^1.1.0",
"@tpluscode/rdf-string": "^0.2.25",
"@tpluscode/sparql-builder": "^0.3.21",
"@types/lodash": "^4.14.182",
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@
"target": "es2019",
"module": "commonjs",
"lib": [
"es2019",
"es2019"
],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "lib",
"sourceRoot": "src",
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": false,
"typeRoots": ["@types", "node_modules/@types"]
"typeRoots": ["./@types", "./node_modules/@types"]
},
"include": ["src", "test"],
"include": ["src", "test", "@types"],
}

0 comments on commit 01e2090

Please sign in to comment.