build(deps-dev): bump @types/node from 22.10.5 to 22.13.5 #238
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manual Workflow | ||
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 }}..." |