a9fe038347
* fix: typo * fix: remove debug for git references it generates a massive amount of logs * feat: read values from env allows to test act on GHA when it's not a main repo * fix: merge extrapath with PATH * fix(tests): add additional shells for testing * fix(image): update images pin node to major version only, current node version: 12.22.1 replace most images with `node:12-buster-slim` to prevent errors on macOS runner due to DockerHub pull limit replace ocaml image Co-authored-by: Casey Lee <cplee@nektos.com>
29 lines
639 B
YAML
29 lines
639 B
YAML
name: basic
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: ./actions/action1
|
|
with:
|
|
args: echo 'build'
|
|
- uses: actions/hello-world-javascript-action@master
|
|
with:
|
|
who-to-greet: 'Mona the Octocat'
|
|
test1:
|
|
runs-on: ubuntu-latest
|
|
needs: [build]
|
|
steps:
|
|
- uses: docker://node:12-buster-slim
|
|
with:
|
|
args: echo ${GITHUB_REF} | grep nektos/act
|
|
- uses: ./actions/docker-url
|
|
with:
|
|
args: npm install -g qs
|
|
test2:
|
|
runs-on: ubuntu-latest
|
|
needs: [build]
|
|
steps:
|
|
- run: echo hello
|
|
- run: echo world
|