Skip to content

Bump typescript from 5.9.3 to 7.0.2 in /cdk #33

Bump typescript from 5.9.3 to 7.0.2 in /cdk

Bump typescript from 5.9.3 to 7.0.2 in /cdk #33

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Install dependencies
working-directory: cdk
run: npm ci
- name: Build
working-directory: cdk
run: npm run build
- name: Test
working-directory: cdk
run: npx jest --coverage