Skip to content

Commit faa9e73

Browse files
committed
update tests
1 parent f45aa92 commit faa9e73

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/testworkflows/container-matrix.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@ jobs:
88
runs-on: [self-hosted]
99
container: ubuntu:latest
1010
steps:
11-
- uses: actions/checkout@v6
11+
- uses: actions/github-script@v7
12+
with:
13+
script: |
14+
console.log('Hello from NodeJS Actions in a container!');
1215
- run: echo Hello World

.github/testworkflows/matrix.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ jobs:
77
test: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19]
88
runs-on: [self-hosted]
99
steps:
10+
- uses: actions/github-script@v7
11+
with:
12+
script: |
13+
console.log('Hello from NodeJS Actions!');
1014
- run: echo Hello World

0 commit comments

Comments
 (0)