summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/basic/push.yml
blob: 35b78211afbe70abe7aff8b7b1bc6b976bc8c576 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: basic
on: push

env:
  TEST: value

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - run: '[[ "$(pwd)" == "${GITHUB_WORKSPACE}" ]]'
      - run: echo ${{ env.TEST }} | grep value
      - run: env
      - uses: docker://node:16-buster-slim
        with:
          somekey: ${{ env.TEST }}
          args: echo ${INPUT_SOMEKEY} | grep somevalue
      - run: ls
      - run: echo 'hello world'
      - run: echo ${GITHUB_SHA} >> $(dirname "${GITHUB_WORKSPACE}")/sha.txt
      - run: cat $(dirname "${GITHUB_WORKSPACE}")/sha.txt | grep ${GITHUB_SHA}
  build:
    runs-on: ubuntu-latest
    needs: [check]
    steps:
      - uses: actions/checkout@v2
      - uses: ./actions/action1
        with:
          args: echo 'build'
  test:
    runs-on: ubuntu-latest
    needs: [build]
    steps:
      - uses: docker://node:16-buster-slim
        with:
          args: env
      - uses: docker://node:16-buster-slim
        with:
          entrypoint: /bin/echo
          args: ${{github.event_name}}