Skip to content

ci: pin the build to Node 22 #141

ci: pin the build to Node 22

ci: pin the build to Node 22 #141

name: Deploy at Vercel
on:
push:
branches:
- '**'
- '!main'
jobs:
vercel:
runs-on: ubuntu-latest
name: "Deploy application"
env:
VERCEL_ORG_ID: ${{ secrets.ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.PROJECT_ID }}
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
with:
node-version: '20'
registry-url: https://registry.npmjs.org/
- name: Deploy application
run: >
npx --yes vercel@59.1.3 deploy --prod --yes
--token "${{ secrets.VERCEL_TOKEN }}"