act/pkg/runner/testdata/job-container/push.yml

21 lines
393 B
YAML
Raw Normal View History

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