JavaScript: Fixed lambda trigger event handler : Amazon Cognito #3837
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: "cpp lint check" | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| cpplint: | |
| name: Lint CPP | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout files | |
| uses: actions/checkout@v4 | |
| with: | |
| sparse-checkout: | | |
| .github | |
| cpp | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v41 | |
| with: | |
| files: "cpp/**/*.{cpp,h}" | |
| - name: "Run clang-tidy check" | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| uses: ./.github/sd-cpp-linter | |
| with: | |
| config_file: ./.github/cpp-linter/clang-tidy-config.txt | |
| token: ${{ secrets.GITHUB_TOKEN }} |