Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix lint issues #19

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Loading