Skip to content

Commit

Permalink
Chore/add iql (#4)
Browse files Browse the repository at this point in the history
* chore: add iql as package

* chore: add tests

* chore: include iql in the modules

* fix: codestyle

* chore: ignore more things
  • Loading branch information
jkoenig134 authored Jan 29, 2024
1 parent ebcc4ff commit 88756bc
Show file tree
Hide file tree
Showing 20 changed files with 2,405 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"parserOptions": {
"project": ["./packages/*/tsconfig.json", "./packages/*/test/tsconfig.json"]
},
"ignorePatterns": ["jest.config.js", "Schemas.ts", "dist", "node_modules", "lib-web"],
"ignorePatterns": ["jest.config.js", "Schemas.ts", "dist", "node_modules", "lib-web", "generated", "demo"],
"rules": {
"jest/expect-expect": [
"error",
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,3 +241,17 @@ jobs:
NMSHD_TEST_BASEURL: http://localhost:5000
NMSHD_TEST_CLIENTID: test
NMSHD_TEST_CLIENTSECRET: test

test-iql:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run build:node --workspaces
env:
BUILD_NUMBER: ${{ github.run_number }}
COMMIT_HASH: ${{ github.sha }}
- run: npm run test:ci --workspace=@nmshd/iql
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules
package-lock.json
lib-web
dist-test
Schemas.ts
Schemas.ts
generated
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This monorepo consolidates the following packages:

| Package | Version |
| :----------------------------------- | :---------------------------------------------------------------------------------------------------------------- |
| [iql](packages/iql/) | [![version](https://badge.fury.io/js/@nmshd%2fiql.svg)](https://www.npmjs.com/package/@nmshd/iql) |
| [transport](packages/transport/) | [![version](https://badge.fury.io/js/@nmshd%2ftransport.svg)](https://www.npmjs.com/package/@nmshd/transport) |
| [content](packages/content/) | [![version](https://badge.fury.io/js/@nmshd%2fcontent.svg)](https://www.npmjs.com/package/@nmshd/content) |
| [consumption](packages/consumption/) | [![version](https://badge.fury.io/js/@nmshd%2fconsumption.svg)](https://www.npmjs.com/package/@nmshd/consumption) |
Expand Down
Loading

0 comments on commit 88756bc

Please sign in to comment.