Skip to content

Commit

Permalink
Merge pull request #96 from MeasureAuthoringTool/MAT-7502
Browse files Browse the repository at this point in the history
MAT-7502: Add featureFlag for QI-Core6
  • Loading branch information
mcmcphillips authored Aug 14, 2024
2 parents 734cdc4 + 657dbaf commit 0a27996
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .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 @@ -100,3 +100,5 @@ jobs:
with:
file: lcov.info
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}

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 0a27996

Please sign in to comment.