OPEN TO WORK

Available for new opportunities! Let's build something amazing together.

Locally running and testing your custom GitHub Action

GitHub Actions Testing Development
post

When developing a custom GitHub Action, you should test and run it locally before pushing it to your repository. Initially, I created a script that allowed me to run it locally, but over the weekend, I found a better way by using the @github/local-action command-line tool.

Show image GitHub local-action debugger
GitHub local-action debugger

In this post, I will show you how to use the @github/local-action command-line tool to test your custom GitHub Action locally.

Prerequisites

To start with the @github/local-action command-line tool, it is best to already have a custom GitHub Action you want to test.

If you don’t have one yet, you can use the JavaScript Action Template or the TypeScript Action Template.

Installing the @github/local-action command-line tool

To use the @github/local-action command-line tool, you need to install it first or use the npx command to run it without installing it.

Install the @github/local-action command-line tool
npm install -g @github/local-action
# or
npx @github/local-action

Preparing the environment file

To use the command-line tool, you need to create an environment file to define the input variables and the GitHub variables. Create a new file called .env in your project and add your configuration.

Adding your variables

Your GitHub Action might require some input variables to run. You can define these variables in the environment file by adding the INPUT_ prefix to the variable name.

Adding input variables
INPUT_<action-variable-name>=<VALUE>
# Example for the Playwright Issue Creator action
INPUT_github-token=<token>
INPUT_report-path="results.success.json"
INPUT_add-comment=true
INPUT_close-on-success=true
INPUT_job-summary=false
INPUT_issue-assignees=estruyf

Defining your GitHub variables

You can also define the GitHub variables in the environment file. These variables define the GitHub context.

In my case, I need to set the GITHUB_REPOSITORY variable to get the repo from the @actions/github its context object.

Adding GitHub variables
GITHUB_REPOSITORY=estruyf/github-actions-testing

Enabling debugging

You can enable debugging by setting the ACTIONS_STEP_DEBUG variable to true.

Enable debugging
ACTIONS_STEP_DEBUG=true

Writing the job summary

When your action writes a job summary, you must do the following configuration to enable it locally.

  • Create a new file to write the job summary. For example: summary.md.
  • Add the GITHUB_STEP_SUMMARY with the path to your summary file.
Link the summary file to enable writing to the job summary
GITHUB_STEP_SUMMARY=summary.md

Using the @github/local-action command-line tool

Once you have installed the command-line tool and created the .env file, you can run the following command to test your custom GitHub Action locally.

Execute the local-action command
# If you have the command-line tool installed
local-action <path-to-your-action> <path-to-your-entrypoint> <path-to-environment-file>
# If you want to use npx
npx @github/local-action <path-to-your-action> <path-to-your-entrypoint> <path-to-environment-file>

The local-action command takes three arguments:

  1. <path-to-your-action>: The path to your custom GitHub Action (the folder where your action.yml file is located).
  2. <path-to-your-entrypoint>: The path to the entry point of your custom GitHub Action.
  3. <path-to-environment-file>: The path to the environment file you want to use.

All three arguments are required to run the local-action command.

Here is an example of how I run it for my Playwright Issue Creator GitHub Action:

Terminal window
npx @github/local-action run ./ src/index.ts .env
Show image GitHub local-action debugger
GitHub local-action debugger

This command-line tool is great during the development process of your custom GitHub Action.

Related articles

Report issues or make changes on GitHub

Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.

Comments

Elio Struyf

Solutions Architect & Developer Expert

Loading...

Let's build together

Manage content in VS Code

Present from VS Code