Compare commits

...

5 Commits

Author SHA1 Message Date
7f3cdecef5 Merge pull request 'upgrades' (#18) from upgrades into main
All checks were successful
Node.js CI / build (22.x) (push) Successful in 2m27s
Node.js CI / build (20.x) (push) Successful in 2m28s
Vercel Production Deployment / Deploy-Production (push) Successful in 3m43s
Reviewed-on: #18
2025-12-04 03:27:17 +00:00
57a6c2057a 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
2025-12-03 22:22:51 -05:00
d1f45b0c4f Fix actions strategy
Some checks failed
Vercel Preview Deployment / Deploy-Preview (pull_request) Failing after 1m17s
Node.js CI / build (20.x) (pull_request) Successful in 3m0s
Node.js CI / build (22.x) (pull_request) Successful in 2m59s
2025-12-03 22:14:19 -05:00
d23b6d225a Fix actions
Some checks failed
Node.js CI / build (18.x) (pull_request) Waiting to run
Node.js CI / build (20.x) (pull_request) Waiting to run
Node.js CI / build (22.x) (pull_request) Has been cancelled
Vercel Preview Deployment / Deploy-Preview (pull_request) Failing after 1m28s
2025-12-03 22:11:57 -05:00
7671e56c3f Fix actions
Some checks failed
Vercel Preview Deployment / Deploy-Preview (pull_request) Failing after 8s
Node.js CI / build (20.x) (pull_request) Successful in 3m51s
Node.js CI / build (22.x) (pull_request) Successful in 3m58s
Node.js CI / build (18.x) (pull_request) Successful in 4m6s
2025-12-03 22:11:04 -05:00
3 changed files with 46 additions and 6 deletions

View File

@@ -17,11 +17,9 @@ jobs:
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [20.x, 22.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: "Base requirements"
run: |
# packages
@@ -30,13 +28,15 @@ jobs:
ansible-galaxy collection install community.general --force
ansible-galaxy collection install ansible.posix --force
- uses: actions/checkout@v4
# Corepack
- name: Install Corepack
run: npm install -g corepack
- 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

@@ -4,8 +4,8 @@ env:
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
# Trigger the workflow on push or pull request,
# push:
# branches: [main, stable]
# push:
# branches: [main, stable]
pull_request:
# These types of PRs
types: [opened, synchronize, reopened]
@@ -13,6 +13,26 @@ jobs:
Deploy-Preview:
runs-on: ubuntu-24.04
steps:
# Setup environment
- name: "Base requirements"
run: |
# packages
apk update && apk add --no-cache git docker docker-compose nodejs gpg openssh npm ansible
# 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,8 +10,28 @@ on:
jobs:
Deploy-Production:
runs-on: ubuntu-24.04
steps:
# Setup environment
- name: "Base requirements"
run: |
# packages
apk update && apk add --no-cache git docker docker-compose nodejs gpg openssh npm ansible
# 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"