Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/hello-world.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,11 @@ jobs:
- run: yarn package
working-directory: hello-world
- uses: ./.github/actions/update-generated-files

e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./hello-world
with:
name: foo
9 changes: 9 additions & 0 deletions hello-world/action.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: hello-world
description: say Hello World
inputs:
name:
description: example input
required: true
runs:
using: 'node12'
main: 'dist/index.js'