act/pkg/runner/testdata/job-container/push.yml
2021-02-23 09:49:24 -08:00

20 lines
394 B
YAML

name: job-container
on: push
jobs:
test:
runs-on: ubuntu-latest
container:
image: node:12.20.1-buster
env:
TEST_ENV: test-value
steps:
- run: echo ${TEST_ENV} | grep test-value
test2:
runs-on: ubuntu-latest
container: node:12.20.1-buster
steps:
- run: echo ${TEST_ENV} | grep test-value
env:
TEST_ENV: test-value