From b20282a749e2d7435b3fb0de56b6298dbc3c56db Mon Sep 17 00:00:00 2001 From: Leo Singer Date: Tue, 24 Oct 2023 21:33:25 -0400 Subject: [PATCH 1/2] Fix long line --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 76f2170..4f1387f 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,7 @@ name: 'Plan build matrix from Node.js package.json file' -description: "Automatically determine supported Node.js versions and GitHub Actions runners from the contents of your project's package.json file." +description: + "Automatically determine supported Node.js versions and GitHub Actions runners + from the contents of your project's package.json file." author: 'nasa-gcn' outputs: From b5ce5e16abcd30b2cc67ca054d327ecffa1f7bf9 Mon Sep 17 00:00:00 2001 From: Leo Singer Date: Tue, 24 Oct 2023 21:37:03 -0400 Subject: [PATCH 2/2] Fix test-action job --- .github/workflows/ci.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5424ac7..658f8ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,9 +52,11 @@ jobs: - name: Test Local Action id: test-action uses: ./ - with: - milliseconds: 1000 - - name: Print Output - id: output - run: echo "${{ steps.test-action.outputs.time }}" + - name: Print outputs.runsOn + id: outputs-runsOn + run: echo "${{ steps.test-action.outputs.runsOn }}" + + - name: Print outputs.nodeVersion + id: outputs-nodeVersion + run: echo "${{ steps.test-action.outputs.nodeVersion }}"