diff --git a/.drone.yml b/.drone.yml index ff65400..62640e9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,7 +5,7 @@ name: default steps: # Step 1: Install dependencies and run linting - name: test - image: node:16 + image: node:14 commands: - npm ci - npm run lint || echo "⚠ Linting skipped (no lint script found)" @@ -15,7 +15,7 @@ steps: # Step 2: Build for production (to verify it compiles) - name: build - image: node:16 + image: node:14 commands: - npm ci - npm run build