Skip to content

Commit

Permalink
fix: Updated release flows to setup-node and setup make before callin…
Browse files Browse the repository at this point in the history
…g npm ci (hashgraph#2565)

Updated release flows to setup-node and setup make before calling npm ci

Signed-off-by: Roger Barker <roger.barker@swirldslabs.com>
  • Loading branch information
rbarkerSL authored Jun 4, 2024
1 parent 496722a commit 01fc9dc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/release-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ jobs:

- name: Checkout repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

- name: Install make
run: sudo apt-get update; sudo apt-get install build-essential -y

- name: Install packages
run: npm ci
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ jobs:
with:
node-version: '18'

- name: Install make
run: sudo apt-get update; sudo apt-get install build-essential -y

- name: Install dependencies
run: npm ci

Expand Down Expand Up @@ -162,6 +165,9 @@ jobs:
with:
node-version: '18'

- name: Install make
run: sudo apt-get update; sudo apt-get install build-essential -y

- name: Install dependencies
run: npm ci

Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/release-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,15 @@ jobs:

- name: Checkout repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6


- name: Set up Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: '18'

- name: Install make
run: sudo apt-get update; sudo apt-get install build-essential -y

- name: Install packages
run: npm ci

Expand Down

0 comments on commit 01fc9dc

Please sign in to comment.