Skip to content

fix: rename Image to ImageIcon to avoid alt prop lint warning #2

fix: rename Image to ImageIcon to avoid alt prop lint warning

fix: rename Image to ImageIcon to avoid alt prop lint warning #2

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Install Vercel CLI
run: npm install --global vercel@latest
- name: Deploy to Vercel
run: vercel --prod --yes --token=${{ secrets.VERCEL_TOKEN }}