Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/reusable-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:
NODE_ENV: test

strategy:
fail-fast: false
# Run each examples (e.g. `next-example`) which uses a library (e.g. `@aws-amplify/ui-react`)
# BUT, Exclude `@todo-${{ package }}` tests in PRs
# See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#using-environment-variables-in-a-matrix
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reusable-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
unit:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
package:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-internal-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:

e2e:
uses: ./.github/workflows/reusable-e2e.yml
needs: unit
needs: setup-cache
with:
commit: ${{ github.event.pull_request.head.sha }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
Expand Down
3 changes: 2 additions & 1 deletion build-system-tests/e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"typescript": "^5.1.6"
},
"resolutions": {
"esbuild": "^0.25.0"
"esbuild": "^0.25.0",
"glob": "^10.0.0"
}
}
2,194 changes: 923 additions & 1,271 deletions build-system-tests/e2e/yarn.lock

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
]
},
"resolutions": {
"@types/node": "18.15.11",
"@aws-amplify/ui-e2e/**/glob": "^10.0.0",
"@aws-amplify/ui-e2e/detox/**/glob": "^10.0.0",
"**/@react-native-community/**/fast-xml-parser": "^4.4.1",
"**/@aws-*/**/fast-xml-parser": "^4.4.1",
"**/@aws-amplify/ui-angular-example/**/codelyzer/**/@angular/core": "10.2.5",
Expand Down Expand Up @@ -128,6 +131,7 @@
"@testing-library/user-event": "^14.5.1",
"@types/fs-extra": "11.0.3",
"@types/jest": "^29.5.5",
"@types/node": "18.15.11",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-test-renderer": "^18.3.0",
Expand Down
6 changes: 4 additions & 2 deletions packages/angular/projects/ui-angular/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"types": ["@types/long"],
"types": [],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"lib": ["dom", "es2019", "dom.iterable"]
},
"angularCompilerOptions": {
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"enableResourceInlining": true
},
"exclude": ["**/*.spec.ts"]
"exclude": ["**/*.spec.ts", "../../../node_modules/@types/node"]
}
1 change: 1 addition & 0 deletions packages/angular/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"target": "es2020",
"module": "es2020",
"esModuleInterop": true,
"skipLibCheck": true,
"paths": {}
},
"angularCompilerOptions": {
Expand Down
22,091 changes: 10,519 additions & 11,572 deletions yarn.lock

Large diffs are not rendered by default.

Loading