Transition to GitHub Actions (#136)

* gulpfile.js: fix ESLint warnings

* package.json: add shortcut scripts

* scripts/games: do a shallow git clone to save time

* ci: migrate to GitHub Actions
This commit is contained in:
liushuyu
2020-11-05 00:53:06 -07:00
committed by GitHub
parent 5dc5d4331a
commit 245eaf7448
5 changed files with 105 additions and 88 deletions

View File

@ -38,7 +38,7 @@ function gitPull(directory, repository) {
} else {
logger.info(`Cloning repository from Github : ${directory}`);
logger.info(`git clone ${repository}`);
exec(`git clone ${repository}`);
exec(`git clone --depth=1 ${repository}`);
}
}