Skip to content

Commit

Permalink
fix(issue118): add smoke test and type surface tests
Browse files Browse the repository at this point in the history
* test(repo): add smoke test and type surface tests
fixes #118
* ci(repo): run smoke test in CI
* fix(camunda8): respect OAuth disabled flag
  • Loading branch information
jwulf committed Apr 8, 2024
1 parent a1d9e9f commit fe0c709
Show file tree
Hide file tree
Showing 13 changed files with 481 additions and 81 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,8 @@
],
"import/newline-after-import": "error",
"prettier/prettier": "error"
},
"env": {
"node": true
}
}
4 changes: 2 additions & 2 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
- name: Install dependencies
run: npm install

- name: Build
run: npm run build
- name: Build and Smoke Test
run: npm run test:smoketest

- name: Run Unit Tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- name: Install dependencies
run: npm i

- name: Build
run: npm run build
- name: Build and Smoke Test
run: npm run test:smoketest

- name: Run Unit Tests
run: |
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"zeebe",
"github",
"modeler",
"operate"
"operate",
"camunda8"
],
"editor.formatOnSave": true,

Expand Down
Loading

0 comments on commit fe0c709

Please sign in to comment.