Skip to content

chore: correct comment syntax in PR template for IAM permissions #2420

chore: correct comment syntax in PR template for IAM permissions

chore: correct comment syntax in PR template for IAM permissions #2420

Workflow file for this run

name: Codecov
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
collect:
name: collect
if: github.repository == 'aws/aws-cdk'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
- name: Install dependencies
run: yarn install
- name: Build Library
run: npx lerna run build --scope=aws-cdk-lib
- name: Build CLI
run: npx lerna run build --scope=aws-cdk
- name: Run Core tests
run: cd packages/aws-cdk-lib && yarn test core
- name: Run CLI tests
run: cd packages/aws-cdk && yarn test
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
files: packages/aws-cdk/coverage/cobertura-coverage.xml,packages/aws-cdk-lib/coverage/cobertura-coverage.xml
fail_ci_if_error: true
flags: suite.unit
token: ${{ secrets.CODECOV_TOKEN }}