Bump aws-cdk from 2.173.4 to 2.178.1 in /pipeline #92
This file contains 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
on: | |
[pull_request, push] | |
name: Check | |
jobs: | |
images: | |
name: Docker Images Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Test | |
run: | | |
cd infra | |
docker build pds/ | |
docker build pds-litestream/ | |
docker build pds-s3-file-sync/ | |
infra: | |
name: Infra CDK Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Test | |
run: | | |
cd infra | |
npm install -g aws-cdk | |
npm ci | |
npm run build | |
pipeline: | |
name: Pipeline CDK Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Test | |
run: | | |
cd pipeline | |
npm install -g aws-cdk | |
npm ci | |
npm run build | |
cdk synth --app 'node pipeline.js' |