Skip to content

Update README.md

Update README.md #4

Workflow file for this run

name: Tests CI
on:
pull_request:
branches:
- master
- release/*
- feature/*
env:
# Setting an environment variable with the value of a configuration variable
env_var: ${{ vars.ENV_CONTEXT_VAR }}
jobs:
display-variables:
name: ${{ vars.JOB_NAME }}
# You can use configuration variables with the `vars` context for dynamic jobs
if: ${{ vars.USE_VARIABLES == 'true' }}
runs-on: ${{ vars.RUNNER }}
environment: ${{ vars.ENVIRONMENT_STAGE }}
steps:
- name: Use variables
run: |
echo "repository variable : $REPOSITORY_VAR"
echo "organization variable : $ORGANIZATION_VAR"
echo "overridden variable : $OVERRIDE_VAR"
echo "variable from shell environment : $env_var"
env:
REPOSITORY_VAR: ${{ vars.REPOSITORY_VAR }}
ORGANIZATION_VAR: ${{ vars.ORGANIZATION_VAR }}
OVERRIDE_VAR: ${{ vars.OVERRIDE_VAR }}
- name: ${{ vars.HELLO_WORLD_STEP }}
if: ${{ vars.HELLO_WORLD_ENABLED == 'true' }}
uses: actions/hello-world-javascript-action@main
with:
who-to-greet: ${{ vars.GREET_NAME }}
- name: Log Environment Variables
run: |
echo "COVERAGE_STATEMENTS=${{ vars.COVERAGE_STATEMENTS }}"
echo "COVERAGE_BRANCHES=${{ vars.COVERAGE_BRANCHES }}"
echo "COVERAGE_FUNCTIONS=${{ vars.COVERAGE_FUNCTIONS }}"
echo "COVERAGE_LINES=${{ vars.COVERAGE_LINES }}"