Remove stray trailing spaces (#2122)
This commit is contained in:
parent
9e39a05578
commit
932a7d5a59
6 changed files with 9 additions and 9 deletions
4
.github/workflows/__config-export.yml
generated
vendored
4
.github/workflows/__config-export.yml
generated
vendored
|
|
@ -101,13 +101,13 @@ jobs:
|
||||||
core.setFailed('`codeqlConfigSummary` property not found in the SARIF run property bag.');
|
core.setFailed('`codeqlConfigSummary` property not found in the SARIF run property bag.');
|
||||||
}
|
}
|
||||||
if (configSummary.disableDefaultQueries !== false) {
|
if (configSummary.disableDefaultQueries !== false) {
|
||||||
core.setFailed('`disableDefaultQueries` property incorrect: expected false, got ' +
|
core.setFailed('`disableDefaultQueries` property incorrect: expected false, got ' +
|
||||||
`${JSON.stringify(configSummary.disableDefaultQueries)}.`);
|
`${JSON.stringify(configSummary.disableDefaultQueries)}.`);
|
||||||
}
|
}
|
||||||
const expectedQueries = [{ type: 'builtinSuite', uses: 'security-extended' }];
|
const expectedQueries = [{ type: 'builtinSuite', uses: 'security-extended' }];
|
||||||
// Use JSON.stringify to deep-equal the arrays.
|
// Use JSON.stringify to deep-equal the arrays.
|
||||||
if (JSON.stringify(configSummary.queries) !== JSON.stringify(expectedQueries)) {
|
if (JSON.stringify(configSummary.queries) !== JSON.stringify(expectedQueries)) {
|
||||||
core.setFailed(`\`queries\` property incorrect: expected ${JSON.stringify(expectedQueries)}, got ` +
|
core.setFailed(`\`queries\` property incorrect: expected ${JSON.stringify(expectedQueries)}, got ` +
|
||||||
`${JSON.stringify(configSummary.queries)}.`);
|
`${JSON.stringify(configSummary.queries)}.`);
|
||||||
}
|
}
|
||||||
core.info('Finished config export tests.');
|
core.info('Finished config export tests.');
|
||||||
|
|
|
||||||
2
.github/workflows/__diagnostics-export.yml
generated
vendored
2
.github/workflows/__diagnostics-export.yml
generated
vendored
|
|
@ -136,7 +136,7 @@ jobs:
|
||||||
core.setFailed(
|
core.setFailed(
|
||||||
'Expected exactly one status page reporting descriptor for this diagnostic in the ' +
|
'Expected exactly one status page reporting descriptor for this diagnostic in the ' +
|
||||||
`'runs[].invocations[].toolExecutionNotifications[]' SARIF property, but found ` +
|
`'runs[].invocations[].toolExecutionNotifications[]' SARIF property, but found ` +
|
||||||
`${statusPageNotifications.length}. All notification reporting descriptors: ` +
|
`${statusPageNotifications.length}. All notification reporting descriptors: ` +
|
||||||
`${JSON.stringify(toolExecutionNotifications)}.`
|
`${JSON.stringify(toolExecutionNotifications)}.`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
.github/workflows/__multi-language-autodetect.yml
generated
vendored
2
.github/workflows/__multi-language-autodetect.yml
generated
vendored
|
|
@ -146,7 +146,7 @@ jobs:
|
||||||
|
|
||||||
- name: Check language autodetect for Swift
|
- name: Check language autodetect for Swift
|
||||||
if: >-
|
if: >-
|
||||||
env.CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT == 'true' ||
|
env.CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT == 'true' ||
|
||||||
(runner.os != 'Windows' && matrix.version == 'nightly-latest')
|
(runner.os != 'Windows' && matrix.version == 'nightly-latest')
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
|
|
@ -33,13 +33,13 @@ steps:
|
||||||
core.setFailed('`codeqlConfigSummary` property not found in the SARIF run property bag.');
|
core.setFailed('`codeqlConfigSummary` property not found in the SARIF run property bag.');
|
||||||
}
|
}
|
||||||
if (configSummary.disableDefaultQueries !== false) {
|
if (configSummary.disableDefaultQueries !== false) {
|
||||||
core.setFailed('`disableDefaultQueries` property incorrect: expected false, got ' +
|
core.setFailed('`disableDefaultQueries` property incorrect: expected false, got ' +
|
||||||
`${JSON.stringify(configSummary.disableDefaultQueries)}.`);
|
`${JSON.stringify(configSummary.disableDefaultQueries)}.`);
|
||||||
}
|
}
|
||||||
const expectedQueries = [{ type: 'builtinSuite', uses: 'security-extended' }];
|
const expectedQueries = [{ type: 'builtinSuite', uses: 'security-extended' }];
|
||||||
// Use JSON.stringify to deep-equal the arrays.
|
// Use JSON.stringify to deep-equal the arrays.
|
||||||
if (JSON.stringify(configSummary.queries) !== JSON.stringify(expectedQueries)) {
|
if (JSON.stringify(configSummary.queries) !== JSON.stringify(expectedQueries)) {
|
||||||
core.setFailed(`\`queries\` property incorrect: expected ${JSON.stringify(expectedQueries)}, got ` +
|
core.setFailed(`\`queries\` property incorrect: expected ${JSON.stringify(expectedQueries)}, got ` +
|
||||||
`${JSON.stringify(configSummary.queries)}.`);
|
`${JSON.stringify(configSummary.queries)}.`);
|
||||||
}
|
}
|
||||||
core.info('Finished config export tests.');
|
core.info('Finished config export tests.');
|
||||||
|
|
|
||||||
|
|
@ -66,7 +66,7 @@ steps:
|
||||||
core.setFailed(
|
core.setFailed(
|
||||||
'Expected exactly one status page reporting descriptor for this diagnostic in the ' +
|
'Expected exactly one status page reporting descriptor for this diagnostic in the ' +
|
||||||
`'runs[].invocations[].toolExecutionNotifications[]' SARIF property, but found ` +
|
`'runs[].invocations[].toolExecutionNotifications[]' SARIF property, but found ` +
|
||||||
`${statusPageNotifications.length}. All notification reporting descriptors: ` +
|
`${statusPageNotifications.length}. All notification reporting descriptors: ` +
|
||||||
`${JSON.stringify(toolExecutionNotifications)}.`
|
`${JSON.stringify(toolExecutionNotifications)}.`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -61,8 +61,8 @@ steps:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Check language autodetect for Swift
|
- name: Check language autodetect for Swift
|
||||||
if: >-
|
if: >-
|
||||||
env.CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT == 'true' ||
|
env.CODEQL_ENABLE_EXPERIMENTAL_FEATURES_SWIFT == 'true' ||
|
||||||
(runner.os != 'Windows' && matrix.version == 'nightly-latest')
|
(runner.os != 'Windows' && matrix.version == 'nightly-latest')
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue