Hands-on demo – Testing an Action in GitHub


LearnAzureDevOps-O5

Hands-on demo – Testing an Action in GitHub

Below is a step-by-step demo to test a custom GitHub Action. We'll create a local test workflow to validate the action's functionality.

Prerequisites

  • A GitHub repository with a custom action defined (e.g., JavaScript/TypeScript or Docker-based).

  • Basic knowledge of GitHub Actions YAML syntax.

Step 1: Define Your Action

  1. Example: action.yml

A simple JavaScript-based GitHub Action that echoes an input value.

  1. Example: index.js

The Node.js script for the action.

Step 2: Create a Test Workflow

Define a separate GitHub workflow to test the action locally in your repository.

File:

.github/workflows/test-action.yml

Step 3: Trigger the Test Workflow

  1. Commit and push the workflow file:

  2. Navigate to the Actions tab in your GitHub repository.

  3. Select the "Test Echo Action" workflow.

  4. Click Run workflow (manual trigger via workflow_dispatch).

Step 4: Analyze Console Output

  1. After the workflow runs, click on the "test-action" job.

  2. Look at the logs for the "Run the Action" step.

  3. Example Output:

Step 5: Add Debugging (Optional)

Enhance logging for more detailed output:

  • Enable ACTIONS_STEP_DEBUG:

  • Add additional logs to your code:

Step 6: Automated Tests with Matrix Strategy

For comprehensive testing, include a matrix to validate across multiple configurations.

Example:

Output:

Step 7: Testing Edge Cases

Update your test workflow to include invalid inputs:

Observe whether the action fails gracefully with a clear error message.

Step 8: Local Testing with Act

For faster testing, use the Act tool:

  1. Install Act:

  2. Run the workflow locally:

  3. Debug and iterate on your action without triggering GitHub workflows.

Summary

This demo demonstrates how to define, test, and debug a GitHub Action effectively.

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.