Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a2eaed086f | ||
|
|
b22e591c96 | ||
|
|
fc32afa776 | ||
|
|
8ea81ae6c9 | ||
|
|
e4002c8bd7 | ||
|
|
d738dd0fb7 | ||
|
|
4c7222d648 | ||
|
|
54bf761f7e | ||
|
|
ea5e813192 | ||
|
|
a7f008253c | ||
|
|
ece7275743 | ||
|
|
16a9fb00e9 | ||
|
|
854d643bed | ||
|
|
969e460948 | ||
|
|
ab227451fa | ||
|
|
0f37fc3aa6 | ||
|
|
fa7080e0d4 | ||
|
|
0a86d61a00 | ||
|
|
d53e2066cc | ||
|
|
47450fb3b1 | ||
|
|
fb5db83adc |
@@ -4,6 +4,7 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
# renovate/** branches are generated by https://github.com/apps/renovate
|
||||
- renovate/**
|
||||
|
||||
pull_request:
|
||||
@@ -16,7 +17,7 @@ jobs:
|
||||
strategy:
|
||||
matrix:
|
||||
node-version:
|
||||
- 10
|
||||
- 10.18.0
|
||||
- 12
|
||||
- 14
|
||||
|
||||
@@ -30,6 +31,8 @@ jobs:
|
||||
uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Ensure dependencies are compatible with the version of node
|
||||
run: echo 'engine-strict=true' >> .npmrc
|
||||
- uses: bahmutov/npm-install@v1
|
||||
- run: npm run test:ci
|
||||
|
||||
|
||||
Generated
+1228
-1640
File diff suppressed because it is too large
Load Diff
+10
-10
@@ -32,12 +32,12 @@
|
||||
"execa": "^5.0.0",
|
||||
"figures": "^3.0.0",
|
||||
"find-versions": "^4.0.0",
|
||||
"get-stream": "^5.0.0",
|
||||
"get-stream": "^6.0.0",
|
||||
"git-log-parser": "^1.2.0",
|
||||
"hook-std": "^2.0.0",
|
||||
"hosted-git-info": "^3.0.0",
|
||||
"lodash": "^4.17.15",
|
||||
"marked": "^1.0.0",
|
||||
"marked": "^2.0.0",
|
||||
"marked-terminal": "^4.0.0",
|
||||
"micromatch": "^4.0.2",
|
||||
"p-each-series": "^2.1.0",
|
||||
@@ -50,23 +50,23 @@
|
||||
"yargs": "^16.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "3.13.0",
|
||||
"ava": "3.15.0",
|
||||
"clear-module": "4.1.1",
|
||||
"codecov": "3.8.1",
|
||||
"delay": "4.4.0",
|
||||
"delay": "5.0.0",
|
||||
"dockerode": "3.2.1",
|
||||
"file-url": "3.0.0",
|
||||
"fs-extra": "9.0.1",
|
||||
"got": "11.8.0",
|
||||
"fs-extra": "9.1.0",
|
||||
"got": "11.8.1",
|
||||
"js-yaml": "3.14.0",
|
||||
"mockserver-client": "5.11.2",
|
||||
"nock": "12.0.3",
|
||||
"nock": "13.0.7",
|
||||
"nyc": "15.1.0",
|
||||
"p-retry": "4.2.0",
|
||||
"p-retry": "4.3.0",
|
||||
"proxyquire": "2.1.3",
|
||||
"sinon": "9.2.1",
|
||||
"sinon": "9.2.4",
|
||||
"stream-buffers": "3.0.2",
|
||||
"tempy": "0.5.0",
|
||||
"tempy": "1.0.0",
|
||||
"xo": "0.29.1"
|
||||
},
|
||||
"engines": {
|
||||
|
||||
@@ -63,7 +63,7 @@ async function createRepo(name, branch = 'master', description = `Repository ${n
|
||||
const authUrl = `http://${gitCredential}@${SERVER_HOST}:${HOST_PORT}/git/${name}.git`;
|
||||
|
||||
// Retry as the server might take a few ms to make the repo available push
|
||||
await pRetry(() => initBareRepo(authUrl, branch), {retries: 3, minTimeout: 500, factor: 2});
|
||||
await pRetry(() => initBareRepo(authUrl, branch), {retries: 5, minTimeout: 500, factor: 2});
|
||||
const cwd = await gitShallowClone(authUrl);
|
||||
|
||||
return {cwd, repositoryUrl, authUrl};
|
||||
|
||||
Reference in New Issue
Block a user