We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb88c3b commit 8dae532Copy full SHA for 8dae532
.github/workflows/build.yml
@@ -22,10 +22,10 @@ jobs:
22
node-version: '20'
23
24
- name: Install Yarn
25
- run: npm install -g yarn --openssl_fips=''
+ run: npm install -g yarn
26
27
- name: Install dependencies
28
- run: npm install --openssl_fips=''
+ run: npm install
29
30
- name: Run build script
31
run: .\build.bat
build.bat
@@ -1,5 +1,5 @@
1
@echo off
2
set NODE_OPTIONS=--openssl-legacy-provider
3
-call yarn dist
+call yarn dist --openssl_fips=''
4
echo Build complete. Press any key to close.
5
pause > nul
0 commit comments