fix: forgejo deploy - add NodeJS to container
Some checks failed
Deploy Blog / deploy (push) Failing after 10s

This commit is contained in:
Thomas Bishop 2025-07-08 17:01:41 +01:00
parent 1fcc9c21b0
commit 00117f619d

View file

@ -47,11 +47,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Setup Node.js - name: Install Node.js
uses: actions/setup-node@v3 run: |
with: curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
node-version: "18" sudo apt-get install -y nodejs
cache: "npm"
- run: npm install - run: npm install
- run: npm run build:posts - run: npm run build:posts