Skip to content

Commit 626d9be

Browse files
committed
test
1 parent b934919 commit 626d9be

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/node_js_containers.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ jobs:
1717
with:
1818
entrypoint: '/usr/local/bin/node'
1919
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+
2029

2130
node-docker:
2231
runs-on: ubuntu-latest

script.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
echo "Hello world"

0 commit comments

Comments
 (0)