Optimize CI workflow for self-hosted runners
Some checks failed
Lint and Build / build (pull_request) Failing after 1m19s

Remove Node.js matrix strategy since Node is pre-installed on self-hosted runners.
This reduces build time by avoiding duplicate builds.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Decobus 2025-07-20 00:35:21 -04:00
parent 5789986bb6
commit b9fa9f11b0

View file

@ -9,21 +9,12 @@ on:
jobs:
build:
runs-on: self-hosted
strategy:
matrix:
node-version: [ 20, 22 ]
# Note: Node.js is pre-installed on self-hosted runners
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Clean NextJS cache
run: rm -rf .next
@ -42,6 +33,6 @@ jobs:
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: obs-ss-${{ matrix.node-version }}
name: obs-ss-build
include-hidden-files: 'true'
path: ./.next/*