1
0
Fork 0

Fix the deployment workflow
Some checks failed
Deploy / build (push) Failing after 5s

This commit is contained in:
Moritz Ruth 2025-02-26 19:11:44 +01:00
parent 491c12a80e
commit 602f285352
Signed by: moritzruth
GPG key ID: C9BBAB79405EE56D
2 changed files with 14 additions and 3 deletions

View file

@ -5,13 +5,21 @@ jobs:
build:
runs-on: "docker"
container:
image: "code.forgejo.org/oci/node:22-alpine3.21"
image: "code.forgejo.org/oci/alpine:3.21"
steps:
- name: "Checkout"
uses: "https://code.forgejo.org/actions/checkout@v4"
- name: "Install pnpm"
run: "npm install --global pnpm"
- name: "Setup pnpm"
uses: "https://github.com/pnpm/action-setup@v4"
with:
version: 10
- name: "Setup Node.js"
uses: "https://github.com/actions/setup-node"
with:
node-version-file: "package.json"
cache: "pnpm"
- name: "Install dependencies"
run: "pnpm install"

View file

@ -32,5 +32,8 @@
"onlyBuiltDependencies": [
"esbuild"
]
},
"engines": {
"node": "22"
}
}