Set up CI with ESLint linter and Mocha test runner (#661)

This commit is contained in:
Thomas Durieux
2026-04-15 04:34:03 +02:00
committed by GitHub
parent 812f8b6314
commit f3641c8ce3
14 changed files with 1991 additions and 38 deletions
+2 -2
View File
@@ -135,7 +135,7 @@ export default class User {
}).exec()
).map((d) => new Repository(d));
const promises = [];
for (let repo of repositories) {
for (const repo of repositories) {
if (
repo.status == "ready" &&
repo.options.expirationMode != "never" &&
@@ -163,7 +163,7 @@ export default class User {
}).exec()
).map((d) => new PullRequest(d));
const promises = [];
for (let repo of pullRequests) {
for (const repo of pullRequests) {
if (
repo.status == "ready" &&
repo.options.expirationMode != "never" &&