fix-broken-build-workflow #36

Merged
Josh merged 12 commits from fix-broken-build-workflow into main 2025-08-26 21:23:09 +00:00
Showing only changes of commit fea007d735 - Show all commits

View File

@@ -11,6 +11,20 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
container: mcr.microsoft.com/devcontainers/python:3.11
steps:
- name: Install Node (and git/make) inside container
run: |
set -eux
apt-get update
# add gcc & toolchain while keeping your originals
apt-get install -y --no-install-recommends curl ca-certificates git build-essential make
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y --no-install-recommends nodejs
node -v
rm -rf /var/lib/apt/lists/*
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4