Skip to content

Fix test workflow and update to Node 20 #39

Fix test workflow and update to Node 20

Fix test workflow and update to Node 20 #39

Workflow file for this run

name: Test Nested Action Wrapper
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Run nested action with wrapper (using time)
uses: ./
with:
action-ref: "actions/hello-world-javascript@v1"
extra-args: "who-to-greet time"
wrapper-command: "time"
- name: Run nested action with wrapper (using time)
uses: ./
with:
action-ref: "actions/hello-world-javascript@v1"
wrapper-command: "time"
who-to-greet: "Mona the Octocat"