From 4fadff0da81616da2a0e83e0085f2cf15860e6a8 Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Tue, 14 May 2024 02:08:45 +0200 Subject: [PATCH] :sparkles: feat: Allow users to know if npm install hooks were run. --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index c17d9e6..2432097 100644 --- a/action.yml +++ b/action.yml @@ -5,6 +5,10 @@ inputs: description: 'Meteor version for the `meteor` executable. If set to `local` or not explicitly set, the `meteor` executable will have the version specified in .meteor/release (this may not work with alpha and beta builds). You can use `latest` as an alias for the latest Meteor release.' required: true default: 'local' +outputs: + ran-npm-install-hooks: + description: "Whether npm install hooks were run." + value: ${{ steps.cache-node-modules.outputs.cache-hit != 'true' }} runs: using: composite steps: