Skip to content

Commit

Permalink
chore: add env var into command directly
Browse files Browse the repository at this point in the history
  • Loading branch information
zixiang2018 committed Sep 28, 2023
1 parent eab4d01 commit 6aaccbf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '18'
- run: echo "NODE_OPTIONS=--openssl-legacy-provider" >> $GITHUB_ENV
- name: Cache Node Modules
uses: actions/cache@v2
env:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"integration:metamask": "npm-run-all --serial integration:wait \"integration:transfers {1} \" --",
"integration:wait": "wait-on -l -i 1000 tcp:8545 http-get://localhost:5000",
"integration:transfers": "node --experimental-modules ./integration/index.mjs",
"integration:dappeteer": "npm-run-all --parallel integration:blockchain integration:local \"integration:metamask {1}\" --race --",
"integration:dappeteer": "export NODE_OPTIONS=--openssl-legacy-provider && npm-run-all --parallel integration:blockchain integration:local \"integration:metamask {1}\" --race --",
"lint": "eslint ./src ./integration --ext .js,.ts,.tsx,.mjs --max-warnings 0",
"lint:fix": "npm run lint -- --fix"
},
Expand Down

0 comments on commit 6aaccbf

Please sign in to comment.