Skip to content

Commit

Permalink
Don't clobber existing ENV.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Sep 13, 2024
1 parent 6eb609e commit 2963337
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ permissions:
env:
CONSOLE_OUTPUT: XTerm
COVERAGE: PartialSummary
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}

jobs:
test:
Expand All @@ -31,9 +33,6 @@ jobs:

- name: Run tests
timeout-minutes: 5
env:
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}
run: bundle exec bake test

- uses: actions/upload-artifact@v4
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test-external.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ permissions:

env:
CONSOLE_OUTPUT: XTerm
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}

jobs:
test:
Expand All @@ -32,7 +34,4 @@ jobs:

- name: Run tests
timeout-minutes: 10
env:
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}
run: bundle exec bake test:external
7 changes: 3 additions & 4 deletions .github/workflows/test-proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ permissions:

env:
CONSOLE_OUTPUT: XTerm
CLOUDFLARE_PROXY: http://localhost:3128
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}

jobs:
test:
Expand Down Expand Up @@ -49,8 +52,4 @@ jobs:
- name: Run tests
timeout-minutes: 10
env:
CLOUDFLARE_PROXY: http://localhost:3128
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}
run: bundle exec bake test
5 changes: 2 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ permissions:

env:
CONSOLE_OUTPUT: XTerm
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}

jobs:
test:
Expand Down Expand Up @@ -46,7 +48,4 @@ jobs:

- name: Run tests
timeout-minutes: 10
env:
CLOUDFLARE_EMAIL: ${{secrets.CLOUDFLARE_EMAIL}}
CLOUDFLARE_KEY: ${{secrets.CLOUDFLARE_KEY}}
run: bundle exec bake test

0 comments on commit 2963337

Please sign in to comment.