We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b934919 commit 626d9beCopy full SHA for 626d9be
2 files changed
.github/workflows/node_js_containers.yml
@@ -17,6 +17,15 @@ jobs:
17
with:
18
entrypoint: '/usr/local/bin/node'
19
args: '-v'
20
+
21
+ # Run a specific script from within the docker container
22
+ - uses: actions/checkout@v1
23
+ - name: Run a script
24
+ uses: docker://node:12.14.1-alpine3.10
25
+ with:
26
+ entrypoint: ./script.sh
27
+ args: "Some string"
28
29
30
node-docker:
31
runs-on: ubuntu-latest
script.sh
@@ -0,0 +1,2 @@
1
+#!/bin/sh
2
+echo "Hello world"
0 commit comments