Skip to content

build(deps-dev): bump typescript-eslint from 8.33.1 to 8.35.1 (#548) #19

build(deps-dev): bump typescript-eslint from 8.33.1 to 8.35.1 (#548)

build(deps-dev): bump typescript-eslint from 8.33.1 to 8.35.1 (#548) #19

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@v4
- name: Setup Node.js
uses: actions/setup-node@v4
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 }}