Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: extensions #1522

Merged
merged 14 commits into from
Mar 5, 2024
2 changes: 1 addition & 1 deletion .github/cache-version.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Raise this number when you want to force a new commit hash, useful for integration tests
version: 3
version: 4
71 changes: 0 additions & 71 deletions .github/workflows/re_test-integration-aws.yml

This file was deleted.

9 changes: 2 additions & 7 deletions .github/workflows/wf_test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,6 @@ jobs:
pr_sha: ${{ github.event.client_payload.pull_request.head.sha }}
pr_number: ${{ github.event.client_payload.pull_request.number }}

aws-integration-tests:
needs: prepare-integration-tests
uses: ./.github/workflows/re_test-integration-aws.yml
secrets: inherit

cli-integration-tests:
needs: prepare-integration-tests
uses: ./.github/workflows/re_test-integration-cli.yml
Expand All @@ -89,7 +84,7 @@ jobs:

notify-end-success:
runs-on: ubuntu-latest
needs: [aws-integration-tests, cli-integration-tests, local-integration-tests, azure-integration-tests]
needs: [cli-integration-tests, local-integration-tests, azure-integration-tests]
if: ${{ always() && github.event.client_payload.pull_request != null && !contains(needs.*.result, 'failure') }}
steps:
- name: Notify success of integration tests
Expand All @@ -103,7 +98,7 @@ jobs:

notify-end-failure:
runs-on: ubuntu-latest
needs: [aws-integration-tests, cli-integration-tests, local-integration-tests, azure-integration-tests]
needs: [cli-integration-tests, local-integration-tests, azure-integration-tests]
if: ${{ always() && github.event.client_payload.pull_request != null && contains(needs.*.result, 'failure') }}
steps:
- name: Notify failure of integration tests
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"cSpell.words": ["codeql", "codesee"],
"mochaExplorer.files": "packages/**test/**/*.test.ts",
"mochaExplorer.require": "ts-node/register",
"typescript.tsdk": "packages/framework-core/node_modules/typescript/lib"
"typescript.tsdk": "packages/framework-core/node_modules/typescript/lib",
"typewriterAutoScroll.offset": 5
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@boostercloud/framework-core",
"comment": "Add injectable feature",
"type": "minor"
}
],
"packageName": "@boostercloud/framework-core"
}
8 changes: 8 additions & 0 deletions common/config/rush/command-line.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,14 @@
"safeForSimultaneousRushProcesses": true,
"enableParallelism": true
},
{
"commandKind": "bulk",
"name": "prepare",
"summary": "Installs ts-patch",
"safeForSimultaneousRushProcesses": true,
"ignoreMissingScript": true,
"enableParallelism": true
},
{
"commandKind": "global",
"name": "pack-integration-deps",
Expand Down
Loading
Loading