Catalog
expo/eas-workflows

expo

eas-workflows

EAS service (paid). Helps understand and write EAS workflow YAML files for Expo projects. Use this skill when the user asks about CI/CD or workflows in an Expo or EAS context, mentions .eas/workflows/, or wants help with EAS build pipelines or deployment automation.

global
Allowed Tools
ReadWriteBash(node:*)
New~937
v1.0Saved Jul 11, 2026

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).

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.

Files5
5 files · 6.6 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Safety

82

Quality

85

Clarity

85

Completeness

76

Summary

This skill guides developers in writing and validating EAS Workflow YAML files for Expo CI/CD pipelines. It provides helpers to fetch the official JSON schema and syntax documentation, and includes a validator script to check workflow YAML against the current spec before deployment.

Detected Capabilities

file readfile writehttp requestnode script executionyaml parsing and validationjson schema validation

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

eas workflowexpo ci/cdworkflow yamleas build pipelinegithub actions expo

Risk Signals

INFO

HTTP requests to external APIs (api.expo.dev, raw.githubusercontent.com)

SKILL.md instructions and scripts/fetch.js
INFO

Node.js script execution with network access

scripts/fetch.js and scripts/validate.js
INFO

File writes to .eas/workflows/ directory

SKILL.md workflow file location
INFO

Caching HTTP responses with ETags

scripts/fetch.js

Referenced Domains

External domains referenced in skill content, detected by static analysis.

api.expo.devexpo.devraw.githubusercontent.com

Use Cases

  • Create an EAS workflow YAML file from scratch
  • Edit and validate existing .eas/workflows files
  • Look up available job types, triggers, and runner configurations
  • Debug workflow validation errors and fix YAML structure
  • Understand expression syntax and job dependency chains

Quality Notes

  • Strong documentation of required external resources (schema, syntax docs) with clear instructions on when/how to fetch them
  • Well-scoped to EAS workflows — clear boundary between what this skill covers and what it doesn't
  • Helper scripts (fetch.js, validate.js) are well-written with proper error handling and caching logic
  • Safety guardrail: users must install npm dependencies before validation, reducing blind execution risk
  • Validator script properly parses YAML and uses AJV with official schema for authoritative validation
  • Documentation emphasizes cost implications of EAS service — users are warned before triggering runs
  • Expressions section clearly documents available contexts (${{}} syntax)
  • Script uses Node.js safe APIs (no shell injection vectors, no eval/exec of dynamic content)
  • Good practice: fetch script implements HTTP caching with ETags to avoid unnecessary bandwidth
Model: claude-haiku-4-5-20251001Analyzed: Jul 11, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Add expo/eas-workflows to your library

Command Palette

Search for a command to run...