diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb2a304..5cc71d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,12 @@ jobs: --health-retries 5 steps: + - name: Install Node.js for checkout action + run: | + apt-get update && apt-get install -y curl git + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt-get install -y nodejs + - name: Check out code uses: actions/checkout@v4 @@ -94,6 +100,12 @@ jobs: container: image: python:3.11-bullseye steps: + - name: Install Node.js for checkout action + run: | + apt-get update && apt-get install -y curl git + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt-get install -y nodejs + - name: Check out code uses: actions/checkout@v4