chore(s3-deployment): increase default memory limit from 128MB to 512MB #4546
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Codecov Collect | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
collect: | |
name: Collect Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
- name: Set up Node | |
uses: actions/setup-node@v5 | |
- name: Install dependencies | |
run: yarn install | |
- name: Build Library | |
run: npx lerna run build --scope=aws-cdk-lib | |
- name: Run Core tests | |
run: cd packages/aws-cdk-lib && yarn test core | |
- name: Upload Coverage and PR Info | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-artifacts | |
path: | | |
packages/aws-cdk-lib/coverage/cobertura-coverage.xml |