This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
chore: add disclaimer before archiving #7
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
name: Synth | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
- labeled | |
- unlabeled | |
- reopened | |
workflow_dispatch: {} | |
jobs: | |
synth: | |
runs-on: ubuntu-latest | |
container: | |
image: docker.mirror.hashicorp.services/hashicorp/jsii-terraform | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: ensure correct user | |
run: chown -R root /__w/cdktf-multistack-serverless-example/ | |
- name: Install dependencies | |
run: yarn | |
- name: Synth | |
run: yarn get && yarn synth |