mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2025-04-21 04:53:08 +03:00
[FIX] - bug ERR_OSSL_EVP_UNSUPPORTED
digital envelope routines
This commit is contained in:
parent
efc5805497
commit
a6c03337a2
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@ -21,11 +21,17 @@ jobs:
|
|||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
|
- name: Override NODE options for the most recent version
|
||||||
|
if: matrix.node-version == 'latest'
|
||||||
|
run: echo "NODE_OPTIONS=--openssl-legacy-provider" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Clean install, build, test
|
- name: Clean install, build, test
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
npm ci
|
||||||
npm run build --if-present
|
npm run build --if-present
|
||||||
npm test
|
npm test
|
||||||
|
|
||||||
- name: Coveralls
|
- name: Coveralls
|
||||||
uses: coverallsapp/github-action@master
|
uses: coverallsapp/github-action@master
|
||||||
with:
|
with:
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
"build:uncompressed:es5": "cross-env TS_CONFIG=tsconfig-es5.json webpack",
|
"build:uncompressed:es5": "cross-env TS_CONFIG=tsconfig-es5.json webpack",
|
||||||
"build:compressed:es5": "cross-env TS_CONFIG=tsconfig-es5.json NODE_ENV=production webpack",
|
"build:compressed:es5": "cross-env TS_CONFIG=tsconfig-es5.json NODE_ENV=production webpack",
|
||||||
"build:definition-header:es5": "cross-env TS_CONFIG=tsconfig-es5.json node definition-header.js",
|
"build:definition-header:es5": "cross-env TS_CONFIG=tsconfig-es5.json node definition-header.js",
|
||||||
"build:es5": "SET NODE_OPTIONS=--openssl-legacy-provider && npm run build:uncompressed:es5 && npm run build:compressed:es5 && npm run build:definition-header:es5",
|
"build:es5": "npm run build:uncompressed:es5 && npm run build:compressed:es5 && npm run build:definition-header:es5",
|
||||||
"build:uncompressed:esm": "cross-env TS_CONFIG=tsconfig-esm.json webpack",
|
"build:uncompressed:esm": "cross-env TS_CONFIG=tsconfig-esm.json webpack",
|
||||||
"build:definition-header:esm": "cross-env TS_CONFIG=tsconfig-esm.json node definition-header.js",
|
"build:definition-header:esm": "cross-env TS_CONFIG=tsconfig-esm.json node definition-header.js",
|
||||||
"build:esm": "npm run build:uncompressed:esm && npm run build:definition-header:esm",
|
"build:esm": "npm run build:uncompressed:esm && npm run build:definition-header:esm",
|
||||||
|
Loading…
Reference in New Issue
Block a user