Correct phrase

Report a typo

name: Correct phrase
on: [push]
   
env:
  ci_cd: continuous integration and continuous delivery
  github_actions_task: allows you to automate your build, test, and deployment pipeline

jobs:
  job1:
    runs-on: ubuntu-latest
    steps: 
      - name: step 1
        run: echo "GitHub Actions is a $ci_cd platform that $github_actions_task"
         
  job2:
    env:
      ci_cd: CI/CD
    runs-on: ubuntu-latest
    steps: 
      - name: step 1
        run: echo "GitHub Actions is a $ci_cd platform that $github_actions_task"   

What is the output of step 1 of job2?

Enter a short text
___

Create a free account to access the full topic