Skip to content

build(deps): bump vite from 6.0.7 to 6.2.0 #239

build(deps): bump vite from 6.0.7 to 6.2.0

build(deps): bump vite from 6.0.7 to 6.2.0 #239

Workflow file for this run

name: Manual Workflow

Check failure on line 1 in .github/workflows/manual-run.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/manual-run.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: berry
on:
workflow_dispatch:
inputs:
environment:
description: 'Environment to deploy'
required: true
default: 'staging'
type: choice
options:
- staging
- production
jobs:
berry:
name: Setup Yarn/Berry
runs-on: ubuntu-latest
deploy:
name: Deploy to ${{ github.event.inputs.environment }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build Project
run: npx tsc
- name: Deploy
run: echo "Deploying to ${{ github.event.inputs.environment }}..."