summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/job-container/push.yml
blob: 4033081b4806ea236d3911b365de6432d8e10cda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: job-container
on: push

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

  test2:
    runs-on: ubuntu-latest
    container: node:16-buster-slim
    steps:
      - run: echo ${TEST_ENV} | grep test-value
        env:
          TEST_ENV: test-value