Skip to content

Commit

Permalink
Experiment: try adding && between env variables in Github action to g…
Browse files Browse the repository at this point in the history
…et test results to show up

Currently, the production acceptance test results aren't included in the artifacts folder
  • Loading branch information
alexanderbird committed Nov 8, 2020
1 parent 4ea7cb6 commit 2144c09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
token: ${{ secrets.NPM_TOKEN }}
- name: "Run acceptance tests against published package"
run: JEST_JUNIT_OUTPUT_NAME=junit.acceptance.production.xml SANDBOX_ENVIRONMENT=PRODUCTION npm run test:acceptance
run: JEST_JUNIT_OUTPUT_NAME=junit.acceptance.production.xml && SANDBOX_ENVIRONMENT=PRODUCTION && npm run test:acceptance
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 2144c09

Please sign in to comment.