github.com/nektos/act@v0.2.63/pkg/runner/testdata/job-container/push.yml (about) 1 name: job-container 2 on: push 3 4 jobs: 5 test: 6 runs-on: ubuntu-latest 7 container: 8 image: node:16-buster-slim 9 env: 10 TEST_ENV: test-value 11 steps: 12 - run: echo ${TEST_ENV} | grep test-value 13 14 test2: 15 runs-on: ubuntu-latest 16 container: node:16-buster-slim 17 steps: 18 - run: echo ${TEST_ENV} | grep test-value 19 env: 20 TEST_ENV: test-value