diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 53e534a..a7808f3 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -38,6 +38,12 @@ jobs: fail-fast: false matrix: ${{ fromJson(needs.matrix.outputs.build_matrix) }} steps: + - name: Install Node.js (required for JS actions in this container) + run: | + apt-get update -qq && apt-get install -y -qq curl + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt-get install -y -qq nodejs + - name: Checkout uses: actions/checkout@v4