Skip to content

Bump aws-cdk-lib from 2.150.0 to 2.178.1 #62

Bump aws-cdk-lib from 2.150.0 to 2.178.1

Bump aws-cdk-lib from 2.150.0 to 2.178.1 #62

Workflow file for this run

name: CI Checks
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
workflow_dispatch:
env:
envInfo: "CI/CD workflow"
jobs:
git-secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout awslabs/git-secrets
uses: actions/checkout@v4
with:
repository: awslabs/git-secrets
ref: master
path: git-secrets
- name: Install git-secrets
run: cd git-secrets && sudo make install && cd ..
- name: Run git-secrets
run: |
git-secrets --register-aws
git-secrets --scan
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install dependencies
run: npm ci
- name: Check linting
run: npm run lint
- name: Build
run: |
npm install
npm run build
- name: Test
run: npm run test