github.com/nektos/act@v0.2.63/pkg/runner/testdata/environment-files-parser-bug/push.yaml (about)

     1  on: push
     2  jobs:
     3    _:
     4      runs-on: ubuntu-latest
     5      steps:
     6      - run: |
     7          echo "test<<World" > $GITHUB_ENV
     8          echo "x=Thats really Weird" >> $GITHUB_ENV
     9          echo "World" >> $GITHUB_ENV
    10      - if: env.test != 'x=Thats really Weird'
    11        run: exit 1
    12      - if: env.x == 'Thats really Weird' # This assert is triggered by the broken impl of act
    13        run: exit 1