Pass environment variables into the action script #379
Unanswered
victor-shelepen
asked this question in
Q&A
Replies: 1 comment 3 replies
-
Hello @victor-shelepen 👋, I haven't tested it, but I think it should work the same way, as for ordinary GitHub workflow: name: 'coverage'
on:
pull_request:
branches:
- master
- main
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ArtiomTr/jest-coverage-report-action@v2
env:
API_KEY: 123456 Let me know, if it works. Also, more documentation could be found here: https://docs.github.com/en/actions/learn-github-actions/variables |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There is integration testing with other services. There is a need to pass environment variables to the testing script. I've not found such functionality in your documentation. Could you help me?
Regards, Victor.
Beta Was this translation helpful? Give feedback.
All reactions