chore: release feat-multi-module-components #319
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: | |
branches: | |
- feat-multi-module-components | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Run tests | |
run: make test-ci | |
test-cdktf: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
# pnpm required for setup-node cache support | |
# ref: https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-data | |
- name: Setup pnpm from .packageManager | |
with: | |
run_install: false | |
uses: pnpm/action-setup@v4 | |
- name: Use Node.js from .nvmrc | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
cache: "pnpm" | |
- name: Run pnpm test | |
run: | | |
pnpm install --frozen-lockfile | |
pnpm run test |