Skip to content

Commit a0abfed

Browse files
authored
Fix build job by downgrading to node 16 (#59)
* Fix build job by downgrading to node 16 See https://stackoverflow.com/questions/69692842/error-message-error0308010cdigital-envelope-routinesunsupported * Downgrade node version for production build
1 parent aaca0f4 commit a0abfed

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/steps/2-setup-azure-environment.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ jobs:
107107
108108
steps:
109109
- uses: actions/checkout@v3
110+
- uses: actions/setup-node@v3
111+
with:
112+
node-version: 16
110113
- name: npm install and build webpack
111114
run: |
112115
npm install

.github/steps/5-deploy-to-prod-environment.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343

4444
steps:
4545
- uses: actions/checkout@v3
46+
- uses: actions/setup-node@v3
47+
with:
48+
node-version: 16
4649
- name: npm install and build webpack
4750
run: |
4851
npm install

0 commit comments

Comments
 (0)