Bump aws-cdk from 2.160.0 to 2.165.0 in /static-site/cdk #12045
Workflow file for this run
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: | |
pipelines: | |
name: Pipelines | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Test | |
run: | | |
cd pipelines | |
npm install -g aws-cdk | |
npm ci | |
npm run build | |
npm run synth-static-site-pipeline | |
npm run synth-backend-pipeline | |
npm run synth-backend-blue-green-pipeline | |
npm run synth-backend-codedeploy-pipeline | |
npm run synth-backend-base-image-pipeline | |
npm run synth-chat-bot-pipeline | |
npm run synth-canaries-pipeline | |
npm run synth-lifecycle-hooks-pipeline | |
npm run synth-pipelines-bootstrap | |
static-site: | |
name: Static Site | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Test | |
run: | | |
npm install -g aws-cdk | |
cd static-site/cdk | |
npm ci | |
npm run build | |
cd ../app | |
npm ci | |
npm run build | |
npm run build:dev | |
npm run build:test | |
npm run build:prod | |
game-infra: | |
name: Game Infra | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Test | |
run: | | |
npm install -g aws-cdk | |
cd trivia-backend/infra/cdk | |
npm ci | |
npm run build | |
cd ../codedeploy-blue-green | |
npm ci | |
npm run build | |
cd ../codedeploy-lifecycle-event-hooks | |
npm ci | |
game-app: | |
name: Game App | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Test | |
run: | | |
cd trivia-backend/base | |
docker build -t reinvent-trivia-backend-base:release . | |
cd .. | |
docker build -t reinvent-trivia-backend:release . |