Add Node.js for Gitea Actions

This commit is contained in:
Beslan
2026-06-02 05:57:01 +03:00
parent 6fd8f6d632
commit e9a7fe5f62
2 changed files with 6 additions and 0 deletions

View File

@@ -21,10 +21,15 @@ RUN apt-get update \
unzip \
&& rm -rf /var/lib/apt/lists/*
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y --no-install-recommends nodejs \
&& rm -rf /var/lib/apt/lists/*
RUN python3 -m pip install --no-cache-dir "mbed-cli==1.10.5"
RUN arm-none-eabi-gcc --version \
&& python3 --version \
&& node --version \
&& mbed --version
WORKDIR /workspace

View File

@@ -12,6 +12,7 @@ Installed tools:
- Ubuntu 20.04
- Python 3
- Node.js 20
- `mbed-cli==1.10.5`
- `gcc-arm-none-eabi` from Ubuntu 20.04 packages
- `make`, `patch`, `git`, `mercurial`, `curl`, `unzip`