Skip to content

Commit

Permalink
remove use of dotenv
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcasey committed Sep 8, 2024
1 parent 988f896 commit 2a3dc8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:
shell: bash
if: steps.restore_node_modules.outputs.cache-hit != 'true'
# This is a temporary step while we figure out a way to ensure compatibility with lens protocol which currently needs ethers-v5
run: npm ci --no-audit --no-fund --force
run: npm ci --no-audit --no-fund --force ${{ inputs.app_name && format('--include-workspace-root -w apps/{0}', inputs.app_name) || '' }}

# If installing specific version of core via npmjs
- name: Upgrade Core package to version ${{ inputs.core_pkg_version }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lint": "npx eslint --ext .tsx,.ts",
"cron": "dotenv -e .env.local -- npm start -w apps/cron",
"cron:build": "npm run build -w apps/cron",
"cron:staging": "npx dotenv -e .env.staging -- npm run start:prod -w apps/cron",
"cron:staging": "npm run start:prod -w apps/cron",
"cron:prod": "npm run start:prod -w apps/cron",
"cron:test": "dotenv -e .env.test.local -- npm test -w apps/cron",
"sockets": "PORT=3336 dotenv -e .env.local -- npm run start -w apps/websockets",
Expand Down

0 comments on commit 2a3dc8f

Please sign in to comment.