feat: add pgstac settings for use_queue and update_collection_extent … #13
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: CDK Compatibility | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| check: | |
| name: aws-cdk-lib@${{ matrix.aws-cdk-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - aws-cdk-version: "2.220.0" | |
| constructs-version: "10.4.2" | |
| - aws-cdk-version: "latest" | |
| constructs-version: "latest" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm run install:all | |
| - run: npm install --no-save aws-cdk-lib@${{ matrix.aws-cdk-version }} constructs@${{ matrix.constructs-version }} | |
| - run: npm run build |