Skip to content

Commit

Permalink
Merge branch 'develop' into snyk-fix-ba36be4840977085579e71a0cfcc131b
Browse files Browse the repository at this point in the history
  • Loading branch information
sb-benohe authored Aug 19, 2024
2 parents af09560 + 0a27996 commit 738631d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/unit_test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: npm ci

- name: Audit dependencies for security vulnerabilities
run: npm audit --audit-level=high
run: npm audit --omit=dev --audit-level=${{ vars.NPM_AUDIT_LEVEL }}

- name: Lint the source code
run: npm run-script lint
Expand Down Expand Up @@ -101,4 +101,3 @@ jobs:
file: lcov.info
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }} # required

16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/Store/featureFlagStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const subject = new BehaviorSubject<FeatureFlags | null>(null);
export interface FeatureFlags {
CQLBuilderIncludes: boolean;
qiCoreElementsTab: boolean;
qiCore6: boolean;
qdmHideJson: boolean;
qiCoreBonnieTestCases: boolean;
enableQdmRepeatTransfer: boolean;
Expand All @@ -18,6 +19,7 @@ export interface FeatureFlags {
}
const initialState: FeatureFlags = {
CQLBuilderIncludes: false,
qiCore6: false,
qiCoreElementsTab: false,
qiCoreBonnieTestCases: false,
qdmHideJson: true,
Expand Down

0 comments on commit 738631d

Please sign in to comment.