Skip to content

build(deps-dev): bump @types/node from 22.10.5 to 22.10.7 #222

build(deps-dev): bump @types/node from 22.10.5 to 22.10.7

build(deps-dev): bump @types/node from 22.10.5 to 22.10.7 #222

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 }}..."