Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Install NodeJS and deps in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Rodriguez committed Oct 12, 2023
1 parent 10c9973 commit 0eadc42
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test-aws-init-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,17 @@ jobs:
- name: Install Pulumi
run: curl -fsSL https://get.pulumi.com | sh

- name: Setup NodeJS
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 18
cache: "npm"
cache-dependency-path: "infra/iam/package-lock.json"

- name: Install Node dependencies
working-directory: infra/iam
run: npm ci

- name: Deploy EKS package
run: |
zarf package deploy build/zarf-package-distro-eks-multi-0.0.3.tar.zst \
Expand Down Expand Up @@ -189,6 +200,17 @@ jobs:
- name: Install Pulumi
run: curl -fsSL https://get.pulumi.com | sh

- name: Setup NodeJS
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 18
cache: "npm"
cache-dependency-path: "infra/iam/package-lock.json"

- name: Install Node dependencies
working-directory: infra/iam
run: npm ci

- name: Deploy EKS package
run: |
zarf package deploy build/zarf-package-distro-eks-multi-0.0.3.tar.zst \
Expand Down

0 comments on commit 0eadc42

Please sign in to comment.