Compare commits

...

3 Commits

Author SHA1 Message Date
Ethan Arrowood
2ecb2c49c4 increase runnersMap 2023-09-26 14:34:04 -06:00
Ethan Arrowood
95a09fa5ef empty changest 2023-09-26 14:00:08 -06:00
Ethan Arrowood
530f6c345d add 6, 7, 8 2023-09-26 13:56:12 -06:00
6 changed files with 7 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
---
---

View File

@@ -0,0 +1 @@
require('./integration-setup')(6);

View File

@@ -0,0 +1 @@
require('./integration-setup')(7);

View File

@@ -0,0 +1 @@
require('./integration-setup')(8);

View File

@@ -33,7 +33,7 @@ module.exports = function setupTests(groupIndex) {
let fixtures = fs.readdirSync(fixturesPath);
if (typeof groupIndex !== 'undefined') {
fixtures = intoChunks(1, 5, fixtures)[groupIndex - 1];
fixtures = intoChunks(1, 8, fixtures)[groupIndex - 1];
console.log('testing group', groupIndex, fixtures);
}

View File

@@ -11,7 +11,7 @@ const runnersMap = new Map([
runners: ['ubuntu-latest', 'macos-latest', 'windows-latest'],
},
],
['test-e2e', { min: 1, max: 7, runners: ['ubuntu-latest'] }],
['test-e2e', { min: 1, max: 8, runners: ['ubuntu-latest'] }],
['test-next-local', { min: 1, max: 5, runners: ['ubuntu-latest'] }],
['test-dev', { min: 1, max: 7, runners: ['ubuntu-latest', 'macos-latest'] }],
]);