ci(forgejo): install Node.js before actions/checkout@v4
Some checks failed
CI / typecheck (pull_request) Failing after 29s
CI / lint (pull_request) Failing after 42s
CI / test (pull_request) Failing after 35s
CI / Secret scan (gitleaks) (pull_request) Failing after 28s
CI / Security audit (bandit) (pull_request) Failing after 27s

This commit is contained in:
Crypto Rug Munch 2026-07-02 23:51:51 +02:00
parent 98eebe62bf
commit a67e2bb762

View file

@ -16,6 +16,14 @@ jobs:
container:
image: python:3.11-slim
steps:
- name: Install Node.js for actions/checkout
run: |
apt-get update
apt-get install -y --no-install-recommends curl ca-certificates
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y --no-install-recommends nodejs
rm -rf /var/lib/apt/lists/*
- uses: actions/checkout@v4
- name: Install system deps
@ -50,6 +58,13 @@ jobs:
container:
image: python:3.11-slim
steps:
- name: Install Node.js for actions/checkout
run: |
apt-get update && apt-get install -y --no-install-recommends curl ca-certificates
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y --no-install-recommends nodejs
rm -rf /var/lib/apt/lists/*
- uses: actions/checkout@v4
- name: Install uv + setup
run: |
@ -67,6 +82,13 @@ jobs:
container:
image: python:3.11-slim
steps:
- name: Install Node.js for actions/checkout
run: |
apt-get update && apt-get install -y --no-install-recommends curl ca-certificates
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y --no-install-recommends nodejs
rm -rf /var/lib/apt/lists/*
- uses: actions/checkout@v4
- name: Install uv + setup
run: |
@ -85,6 +107,13 @@ jobs:
container:
image: python:3.11-slim
steps:
- name: Install Node.js for actions/checkout
run: |
apt-get update && apt-get install -y --no-install-recommends curl ca-certificates
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y --no-install-recommends nodejs
rm -rf /var/lib/apt/lists/*
- uses: actions/checkout@v4
with:
fetch-depth: 0
@ -100,6 +129,13 @@ jobs:
container:
image: python:3.11-slim
steps:
- name: Install Node.js for actions/checkout
run: |
apt-get update && apt-get install -y --no-install-recommends curl ca-certificates
curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
apt-get install -y --no-install-recommends nodejs
rm -rf /var/lib/apt/lists/*
- uses: actions/checkout@v4
- name: Install uv + setup
run: |