Skip to content

Update Ryan.tsx

Update Ryan.tsx #70

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Check Buildable
on:
# Runs on pushes targeting the default branch
push:
branches:
- '*'
- '!main'
pull_request:
branches:
- 'main'
jobs:
# Single deploy job since we're just deploying
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: DISABLE_ESLINT_PLUGIN=true npm run build