Skip to content

build(deps-dev): bump typescript-eslint from 8.48.0 to 8.54.0 (#586) #50

build(deps-dev): bump typescript-eslint from 8.48.0 to 8.54.0 (#586)

build(deps-dev): bump typescript-eslint from 8.48.0 to 8.54.0 (#586) #50

Workflow file for this run

name: Deploy to Vercel
on:
push:
branches: [master]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Run linter
run: npm run lint
- name: Deploy to Vercel Production
run: npx vercel --prod --yes --token ${{ secrets.VERCEL_TOKEN }}
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}