Fix vercel actions
All checks were successful
Node.js CI / build (22.x) (pull_request) Successful in 3m27s
Node.js CI / build (20.x) (pull_request) Successful in 3m28s
Vercel Preview Deployment / Deploy-Preview (pull_request) Successful in 4m1s

This commit is contained in:
2025-12-03 22:22:51 -05:00
parent d1f45b0c4f
commit 57a6c2057a
3 changed files with 27 additions and 1 deletions

View File

@@ -36,7 +36,7 @@ jobs:
- name: "Enable Corepack"
run: corepack enable
- name: "Install Yarn"
run: corepack prepare yarn@4.9.2 --activate
run: corepack prepare yarn@latest --activate
# YARN
- name: "Install Dependencies"

View File

@@ -13,6 +13,7 @@ jobs:
Deploy-Preview:
runs-on: ubuntu-24.04
steps:
# Setup environment
- name: "Base requirements"
run: |
# packages
@@ -20,6 +21,18 @@ jobs:
# ansible collections
ansible-galaxy collection install community.general --force
ansible-galaxy collection install ansible.posix --force
- uses: actions/checkout@v2
# Corepack
- name: Install Corepack
run: npm install -g corepack
- name: "Enable Corepack"
run: corepack enable
- name: "Install Yarn"
run: corepack prepare yarn@latest --activate
# Vercel
- uses: actions/checkout@v2
- name: "Install Vercel CLI"
run: npm install --global vercel@latest

View File

@@ -10,7 +10,9 @@ on:
jobs:
Deploy-Production:
runs-on: ubuntu-24.04
steps:
# Setup environment
- name: "Base requirements"
run: |
# packages
@@ -18,7 +20,18 @@ jobs:
# ansible collections
ansible-galaxy collection install community.general --force
ansible-galaxy collection install ansible.posix --force
- uses: actions/checkout@v2
# Corepack
- name: Install Corepack
run: npm install -g corepack
- name: "Enable Corepack"
run: corepack enable
- name: "Install Yarn"
run: corepack prepare yarn@latest --activate
# Vercel
- name: "Install Vercel CLI"
run: npm install --global vercel@latest
- name: "Pull Vercel Environment Information"