fix(basti-cdk): unblock basti instance role update #63
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: | |
paths: | |
- 'packages/basti-cdk/**' | |
- '.github/workflows/basti-cdk-actions.yml' | |
jobs: | |
test-basti-cdk: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
# The build step is required because JSII generates its own | |
# tsconfig.json file which is not included in the repository. | |
# without this step you will get weird typescript errors. | |
- name: Building | |
run: npm run build -w basti-cdk | |
- name: Testing | |
run: npm run test -w basti-cdk |