Install Node.js manually instead of using container
Some checks failed
Check Container Build Capability / check-build (push) Failing after 0s
Check Kaniko Build (Safe) / kaniko-build (push) Failing after 2s
Verify Mac Runner / verify-runner (push) Successful in 0s

This commit is contained in:
2025-12-29 20:23:29 -06:00
parent 2fcc205234
commit 19d770bf9c

View File

@@ -4,9 +4,13 @@ on: [push, workflow_dispatch]
jobs:
kaniko-build:
runs-on: macos-m1
container:
image: node:20-buster
steps:
- name: Install Dependencies
run: |
if [ -f /etc/alpine-release ]; then
apk add --no-cache nodejs git
fi
- name: Checkout
uses: actions/checkout@v4