Skip to content

Commit

Permalink
DEV: Hardcode env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
dwhieb committed May 5, 2024
1 parent d40351f commit 997dd01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
workflow_dispatch:

env:
NODE_ENV: ${{ vars.NODE_ENV }}
PORT: ${{ vars.PORT }}
NODE_ENV: CI
PORT: 3002

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
workflow_dispatch:

env:
NODE_ENV: ${{ vars.NODE_ENV }}
PORT: ${{ vars.PORT }}
NODE_ENV: CI
PORT: 3002

jobs:

Expand Down

0 comments on commit 997dd01

Please sign in to comment.