mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-05-18 23:48:05 +02:00
Set up CI with ESLint linter and Mocha test runner (#661)
This commit is contained in:
+2
-2
@@ -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" &&
|
||||
|
||||
Reference in New Issue
Block a user