create-github-actions-setup-for-ember-addon
Advanced tools
Comparing version 0.6.0 to 0.7.0
# Changelog | ||
## v0.7.0 (2021-04-10) | ||
#### :boom: Breaking Change | ||
* [#45](https://github.com/jelhan/create-github-actions-setup-for-ember-addon/pull/45) All Ember Try Scenarios should run if one fails ([@jelhan](https://github.com/jelhan)) | ||
#### Committers: 1 | ||
- Jeldrik Hanschke ([@jelhan](https://github.com/jelhan)) | ||
## v0.6.0 (2021-02-15) | ||
@@ -4,0 +12,0 @@ |
interface EmberTryScenario { | ||
scenario: string; | ||
allowedToFail: boolean; | ||
} | ||
@@ -5,0 +4,0 @@ interface ConfigurationInterface { |
@@ -100,3 +100,2 @@ "use strict"; | ||
scenario: name, | ||
allowedToFail: false, | ||
}; | ||
@@ -103,0 +102,0 @@ })) !== null && _b !== void 0 ? _b : []); |
@@ -61,5 +61,2 @@ "use strict"; | ||
scenario: value, | ||
allowedToFail: config.jobs.allow_failures.some(({ env: envAllowedToFail }) => { | ||
return envAllowedToFail === env; | ||
}), | ||
}; | ||
@@ -66,0 +63,0 @@ }) |
{ | ||
"name": "create-github-actions-setup-for-ember-addon", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"description": "Setup GitHub Actions for an Ember Addon", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/jelhan/create-github-actions-setup-for-ember-addon.git", |
@@ -10,3 +10,2 @@ import { debug, determineConfiguration } from './utils'; | ||
scenario: string; | ||
allowedToFail: boolean; | ||
} | ||
@@ -13,0 +12,0 @@ |
@@ -105,3 +105,2 @@ import { ConfigurationInterface, EmberTryScenario } from '../index'; | ||
scenario: name, | ||
allowedToFail: false, | ||
}; | ||
@@ -108,0 +107,0 @@ } |
@@ -79,7 +79,2 @@ import { ConfigurationInterface, EmberTryScenario } from '../index'; | ||
scenario: value, | ||
allowedToFail: config.jobs.allow_failures.some( | ||
({ env: envAllowedToFail }: { env: unknown }) => { | ||
return envAllowedToFail === env; | ||
} | ||
), | ||
}; | ||
@@ -86,0 +81,0 @@ }) |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
149820
1246