search/filter update for transforms, node version bump

This commit is contained in:
ph1r3754r73r
2026-06-24 10:48:03 -07:00
parent d3b8821090
commit 5abc5eb7b4
5 changed files with 372 additions and 82 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ This workflow automatically builds and deploys the project to GitHub Pages whene
1. **Build Stage:**
- Checks out the repository
- Sets up Node.js (v20) with npm cache enabled
- Sets up Node.js (v24) with npm cache enabled
- Installs dependencies with `npm ci`
- Runs test suite with `npm run test:all`
- Runs `npm run build` which:
+5 -5
View File
@@ -24,12 +24,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: '20'
node-version: '24'
cache: 'npm'
- name: Install dependencies
@@ -52,7 +52,7 @@ jobs:
echo "✅ All critical build files present"
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: 'dist/'
retention-days: 7
@@ -67,4 +67,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5