Only report the first CheckoutWrongHead lint error
This commit is contained in:
parent
dc999c55d0
commit
e89a24b8cb
6 changed files with 50 additions and 4 deletions
3
lib/actions-util.js
generated
3
lib/actions-util.js
generated
|
|
@ -167,7 +167,7 @@ function validateWorkflow(doc) {
|
||||||
var _a, _b, _c, _d, _e, _f, _g, _h;
|
var _a, _b, _c, _d, _e, _f, _g, _h;
|
||||||
const errors = [];
|
const errors = [];
|
||||||
// .jobs[key].steps[].run
|
// .jobs[key].steps[].run
|
||||||
for (const job of Object.values(((_a = doc) === null || _a === void 0 ? void 0 : _a.jobs) || {})) {
|
outer: for (const job of Object.values(((_a = doc) === null || _a === void 0 ? void 0 : _a.jobs) || {})) {
|
||||||
if (Array.isArray((_b = job) === null || _b === void 0 ? void 0 : _b.steps)) {
|
if (Array.isArray((_b = job) === null || _b === void 0 ? void 0 : _b.steps)) {
|
||||||
for (const step of (_c = job) === null || _c === void 0 ? void 0 : _c.steps) {
|
for (const step of (_c = job) === null || _c === void 0 ? void 0 : _c.steps) {
|
||||||
// this was advice that we used to give in the README
|
// this was advice that we used to give in the README
|
||||||
|
|
@ -177,6 +177,7 @@ function validateWorkflow(doc) {
|
||||||
// and avoid some race conditions
|
// and avoid some race conditions
|
||||||
if (((_d = step) === null || _d === void 0 ? void 0 : _d.run) === "git checkout HEAD^2") {
|
if (((_d = step) === null || _d === void 0 ? void 0 : _d.run) === "git checkout HEAD^2") {
|
||||||
errors.push(exports.WorkflowErrors.CheckoutWrongHead);
|
errors.push(exports.WorkflowErrors.CheckoutWrongHead);
|
||||||
|
break outer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
20
lib/actions-util.test.js
generated
20
lib/actions-util.test.js
generated
|
|
@ -314,4 +314,24 @@ on:
|
||||||
`));
|
`));
|
||||||
t.deepEqual(errors, []);
|
t.deepEqual(errors, []);
|
||||||
});
|
});
|
||||||
|
ava_1.default("validateWorkflow() should only report the first CheckoutWrongHead", (t) => {
|
||||||
|
const errors = actionsutil.validateWorkflow(yaml.safeLoad(`
|
||||||
|
name: "CodeQL"
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
# The branches below must be a subset of the branches above
|
||||||
|
branches: [master]
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
steps:
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
`));
|
||||||
|
t.deepEqual(errors, [actionsutil.WorkflowErrors.CheckoutWrongHead]);
|
||||||
|
});
|
||||||
//# sourceMappingURL=actions-util.test.js.map
|
//# sourceMappingURL=actions-util.test.js.map
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -432,3 +432,27 @@ on:
|
||||||
|
|
||||||
t.deepEqual(errors, []);
|
t.deepEqual(errors, []);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("validateWorkflow() should only report the first CheckoutWrongHead", (t) => {
|
||||||
|
const errors = actionsutil.validateWorkflow(
|
||||||
|
yaml.safeLoad(`
|
||||||
|
name: "CodeQL"
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
# The branches below must be a subset of the branches above
|
||||||
|
branches: [master]
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
steps:
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
- run: "git checkout HEAD^2"
|
||||||
|
`)
|
||||||
|
);
|
||||||
|
|
||||||
|
t.deepEqual(errors, [actionsutil.WorkflowErrors.CheckoutWrongHead]);
|
||||||
|
});
|
||||||
|
|
|
||||||
|
|
@ -212,7 +212,7 @@ export function validateWorkflow(doc: Workflow): CodedError[] {
|
||||||
const errors: CodedError[] = [];
|
const errors: CodedError[] = [];
|
||||||
|
|
||||||
// .jobs[key].steps[].run
|
// .jobs[key].steps[].run
|
||||||
for (const job of Object.values(doc?.jobs || {})) {
|
outer: for (const job of Object.values(doc?.jobs || {})) {
|
||||||
if (Array.isArray(job?.steps)) {
|
if (Array.isArray(job?.steps)) {
|
||||||
for (const step of job?.steps) {
|
for (const step of job?.steps) {
|
||||||
// this was advice that we used to give in the README
|
// this was advice that we used to give in the README
|
||||||
|
|
@ -222,6 +222,7 @@ export function validateWorkflow(doc: Workflow): CodedError[] {
|
||||||
// and avoid some race conditions
|
// and avoid some race conditions
|
||||||
if (step?.run === "git checkout HEAD^2") {
|
if (step?.run === "git checkout HEAD^2") {
|
||||||
errors.push(WorkflowErrors.CheckoutWrongHead);
|
errors.push(WorkflowErrors.CheckoutWrongHead);
|
||||||
|
break outer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue