From c31d3b692676520076275b62806ea63cd81feb14 Mon Sep 17 00:00:00 2001 From: x7z4w Date: Sun, 3 Aug 2025 19:29:11 +0000 Subject: [PATCH] node Signed-off-by: x7z4w --- .forgejo/workflows/android-check.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/android-check.yaml b/.forgejo/workflows/android-check.yaml index 2f00e57ce..03f325b32 100644 --- a/.forgejo/workflows/android-check.yaml +++ b/.forgejo/workflows/android-check.yaml @@ -37,13 +37,17 @@ on: jobs: lint: name: Android Lint + container: + image: runmymind/docker-android-sdk:latest runs-on: ubuntu-latest container: image: runmymind/docker-android-sdk:latest steps: - - name: Parallel submodules checkout + - name: Install Node.JS shell: bash - run: apt-get install + run: | + apt-get update -y + apt-get install -y nodejs - name: Checkout sources uses: actions/checkout@v4 @@ -83,7 +87,7 @@ jobs: shell: bash run: | apt-get update -y - apt-get install -y cmake ninja-build + apt-get install -y cmake ninja-build nodejs - name: Checkout sources uses: https://github.com/actions/checkout@v4