-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move towards node v20 when executing the action
- Loading branch information
1 parent
5611d21
commit 4ab504d
Showing
1 changed file
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
name: 'Rudder Transformation Action' | ||
description: 'Tests transformations and libraries from your repo and publishes them to your Rudderstack workspace' | ||
name: "Rudder Transformation Action" | ||
description: "Tests transformations and libraries from your repo and publishes them to your Rudderstack workspace" | ||
branding: | ||
icon: activity | ||
color: purple | ||
icon: activity | ||
color: purple | ||
inputs: | ||
metaPath: | ||
description: 'File containing metadata about transformation and libraries' | ||
required: true | ||
email: | ||
description: 'Owner email of the workspace' | ||
required: true | ||
accessToken: | ||
description: 'accessToken generated for a workspace' | ||
required: true | ||
serverEndpoint: | ||
description: 'backend url' | ||
required: false | ||
default: 'https://api.rudderstack.com' | ||
uploadTestArtifact: | ||
description: 'Toggle for enabling artifacts' | ||
required: false | ||
metaPath: | ||
description: "File containing metadata about transformation and libraries" | ||
required: true | ||
email: | ||
description: "Owner email of the workspace" | ||
required: true | ||
accessToken: | ||
description: "accessToken generated for a workspace" | ||
required: true | ||
serverEndpoint: | ||
description: "backend url" | ||
required: false | ||
default: "https://api.rudderstack.com" | ||
uploadTestArtifact: | ||
description: "Toggle for enabling artifacts" | ||
required: false | ||
runs: | ||
using: 'node12' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" |