Skip to content

EAS Configuration and Workflows #206

EAS Configuration and Workflows

EAS Configuration and Workflows #206

Workflow file for this run

name: Validate
on:
workflow_dispatch:
push:
pull_request:
branches:
- '**'
jobs:
validate:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Git Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Validate
run: yarn validate