Skip to content

Commit

Permalink
ci: Add Nodejs Action
Browse files Browse the repository at this point in the history
Nodejs is required for the CDK for Terraform. The library uses the
JSII package to provide native bindings for all non JS languages.
  • Loading branch information
techman83 committed Mar 23, 2024
1 parent 459f1ab commit 40d410f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/coverage-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
with:
path: build/random/dist/CallyProvidersRandom-3.6.0.tar.gz
key: cally-provider-random-3.6.0
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-cally.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
path: build/random/dist/CallyProvidersRandom-3.6.0.tar.gz
key: cally-provider-random-3.6.0

# Install Node - CDKTF requirement
- uses: actions/setup-node@v4
with:
node-version: "20"

# Cally Install
- name: Setup Python
uses: actions/setup-python@v5
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
path: build/random/dist/CallyProvidersRandom-3.6.0.tar.gz
key: cally-provider-random-3.6.0

# Install Node - CDKTF requirement
- uses: actions/setup-node@v4
with:
node-version: "20"

# Cally Install
- name: Setup Python
uses: actions/setup-python@v5
Expand Down

0 comments on commit 40d410f

Please sign in to comment.