release/0.4.0 #60
1 changed files with 7 additions and 0 deletions
|
|
@ -110,9 +110,16 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
|
# Vite 8 needs node >= 22.12, so the CI image's bookworm nodejs is too old
|
||||||
|
# for this job and it gets its own image.
|
||||||
image: node:22-bookworm-slim
|
image: node:22-bookworm-slim
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
# checkout@v4 without git falls back to a REST API tarball download that
|
||||||
|
# Forgejo does not serve, failing with a bare 404.
|
||||||
|
- name: Install git
|
||||||
|
run: apt-get update && apt-get install -y --no-install-recommends git
|
||||||
|
|
||||||
- uses: https://data.forgejo.org/actions/checkout@v4
|
- uses: https://data.forgejo.org/actions/checkout@v4
|
||||||
|
|
||||||
- name: Install JS dependencies
|
- name: Install JS dependencies
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue