chore: add git-lfs installation and initialization steps in .drone.yml
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
George Birikorang 2025-09-17 09:33:54 -07:00
parent 2e98e6cc02
commit 68fcabfabd

View file

@ -6,6 +6,12 @@ steps:
- name: build
image: node:18-alpine
commands:
# Install git-lfs in the build container
- apk add --no-cache git git-lfs
# Initialize LFS and pull LFS files
- git lfs install
- git lfs pull
# Install dependencies and build
- npm ci || npm install
- npm run build || npm build