Combine the words

Report a typo

name: Combine the words
on: [push]

jobs:
  job1:
    env:
      BUILD: build
    runs-on: windows-latest
    steps: 
      - name: step 1
        env:
          TEST: test
        run: echo "GitHub Actions is a CI/CD platform that allows you to automate your $env:BUILD $env:TEST pipeline"   
      - name: step 2
        env:
          DEPLOY: deployment
        run: echo "GitHub Actions is a CI/CD platform that allows you to automate your $env:BUILD $env:TEST and $env:DEPLOY pipeline"   

What is the output of step 2 of job1?

Enter a short text
___

Create a free account to access the full topic