resize iframed page height when input field error are present and the… #6096
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: CI | |
| on: push | |
| jobs: | |
| CI: | |
| name: Continuous Integration | |
| runs-on: ubuntu-latest | |
| permissions: | |
| # required by aws-actions/configure-aws-credentials | |
| id-token: write | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'pnpm' | |
| - run: ./ci.sh | |
| - uses: guardian/actions-riff-raff@v4 | |
| with: | |
| projectName: identity:identity-gateway | |
| roleArn: ${{ secrets.GU_RIFF_RAFF_ROLE_ARN }} | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| buildNumberOffset: 5000 | |
| configPath: ./riff-raff.yaml | |
| contentDirectories: | | |
| identity-gateway: | |
| - identity-gateway.zip | |
| gateway-cloudformation: | |
| - cdk/cdk.out |