diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a17ad90..b77ecfe 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -35,8 +35,13 @@ jobs: setup_cmd: "apt-get update && apt-get install -y mingw-w64" steps: -# - name: Checkout code -# uses: actions/checkout@v4 + - name: Install Node.js for Actions + run: | + apt-get update + apt-get install -y nodejs npm + + - name: Checkout code + uses: actions/checkout@v4 - name: Setup cross-compilation tools if: matrix.setup_cmd != ''