New to Claude Skills? Learn how to install them →

Eexpo on GitHub

EAS Workflows

Free

Streamline your Expo CI/CD with YAML workflows.

by expo2.4k stars on expo/skills
Updated Aug 7, 2026
Get this skill

Free · Opens the source repo

What EAS Workflows does

The EAS Workflows skill is designed for developers working with Expo Application Services (EAS) who need assistance in creating and managing CI/CD workflows. This skill helps users understand and write YAML files specifically for EAS, which is crucial for automating build and deployment processes in Expo projects. By leveraging this skill, developers can efficiently configure their workflows to suit their project's needs, ensuring a smoother integration and delivery pipeline.

When using the EAS Workflows skill, developers can fetch essential resources such as the JSON schema for validation, syntax documentation, and details on pre-packaged jobs. This ensures that the generated workflows are accurate and adhere to the latest specifications. The skill provides a structured approach to defining workflows, including key elements such as triggers, jobs, and concurrency settings, all of which are necessary for effective CI/CD operations.

The skill is particularly beneficial for teams looking to automate their deployment processes while maintaining compliance with EAS requirements. It allows users to validate their YAML files against the latest schema, ensuring that all necessary fields and parameters are correctly defined. This reduces the chances of errors during deployment and helps maintain a high standard of code quality throughout the development lifecycle.

However, users should be aware that EAS is a paid service with specific limits on the free tier. Each workflow job consumes build minutes, and additional costs may apply for certain features, such as the need for paid Apple Developer and Google Play accounts. Therefore, it's essential to review the pricing details before utilizing this skill extensively.

When to use it

Use this skill when you need to create or edit CI/CD workflows for Expo projects, especially when dealing with EAS build pipelines.

When not to use it

This skill may not be suitable for projects that do not use Expo or EAS, or for users who are unfamiliar with YAML syntax and CI/CD concepts.

What you can build with it

Creating a New Workflow

Use the EAS Workflows skill to generate a new YAML file for your Expo project, defining jobs and triggers as needed.

Validating Existing Workflows

After editing a workflow file, run the validation script to ensure it meets the latest schema requirements before deployment.

Automating Deployment Processes

Set up automated build pipelines using the skill to streamline your deployment process for Expo applications.

How to install EAS Workflows

View source

1. Install with the skills CLI

npx skills add expo/skills/eas-workflows --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by expo

EAS Workflows Skill

EAS service - costs apply. EAS Workflows run on Expo Application Services, a paid product with free-tier limits. Each workflow job consumes your plan's build/compute minutes, and jobs that build or submit also need paid Apple Developer and Google Play accounts. Review https://expo.dev/pricing before triggering runs.

Help developers write and edit EAS CI/CD workflow YAML files.

Reference Documentation

Fetch these resources before generating or validating workflow files. First resolve this skill's directory, then use the fetch script in its scripts/ directory. It is implemented using Node.js and caches responses using ETags for efficiency:

# Fetch resources
node <skill-dir>/scripts/fetch.js <url>
  1. JSON Schemahttps://api.expo.dev/v2/workflows/schema

    • It is NECESSARY to fetch this schema
    • Source of truth for validation
    • All job types and their required/optional parameters
    • Trigger types and configurations
    • Runner types, VM images, and all enums
  2. Syntax Documentationhttps://raw.githubusercontent.com/expo/expo/refs/heads/main/docs/pages/eas/workflows/syntax.mdx

    • Overview of workflow YAML syntax
    • Examples and English explanations
    • Expression syntax and contexts
  3. Pre-packaged Jobshttps://raw.githubusercontent.com/expo/expo/refs/heads/main/docs/pages/eas/workflows/pre-packaged-jobs.mdx

    • Documentation for supported pre-packaged job types
    • Job-specific parameters and outputs

Do not rely on memorized values; these resources evolve as new features are added.

Workflow File Location

Workflows live in .eas/workflows/*.yml (or .yaml). Each file must be 16 KiB or smaller.

Top-Level Structure

A workflow file has these top-level keys:

  • name — Display name for the workflow
  • on — Triggers that start the workflow (at least one required)
  • jobs — Job definitions (required)
  • defaults — Shared defaults for all jobs
  • concurrency — Control parallel workflow runs

Consult the schema for the full specification of each section.

Expressions

Use ${{ }} syntax for dynamic values. The schema defines available contexts:

  • github.* — GitHub repository and event information
  • inputs.* — Values from workflow_dispatch inputs
  • needs.* — Outputs and status from dependent jobs
  • jobs.* — Job outputs (alternative syntax)
  • steps.* — Step outputs within custom jobs
  • workflow.* — Workflow metadata

Generating Workflows

When generating or editing workflows:

  1. Fetch the schema to get current job types, parameters, and allowed values
  2. Validate that required fields are present for each job type
  3. Verify job references in needs and after exist in the workflow
  4. Check that expressions reference valid contexts and outputs
  5. Ensure if conditions respect the schema's length constraints

Validation

After generating or editing a workflow file, validate it against the schema:

# Install dependencies if missing
[ -d "<skill-dir>/scripts/node_modules" ] || npm install --prefix <skill-dir>/scripts

node <skill-dir>/scripts/validate.js <workflow.yml> [workflow2.yml ...]

The validator fetches the latest schema and checks the YAML structure. Fix any reported errors before considering the workflow complete.

Answering Questions

When users ask about available options (job types, triggers, runner types, etc.), fetch the schema and derive the answer from it rather than relying on potentially outdated information.

Submitting Feedback

If you encounter errors, misleading or outdated information in this skill, report it so Expo can improve:

npx --yes submit-expo-feedback@latest --category skills --subject "eas-workflows" "<actionable feedback>"

Only submit when you have something specific and actionable to report. Include as much relevant context as possible. If an AI agent repeatedly failed or the user had to take over an Expo task, load the expo-skill-feedback skill and follow its eval-candidate flow instead of reusing the command above.

Frequently asked questions about EAS Workflows

Similar skills