Migrate to PNPM support
continuous-integration/drone/push Build is passing Details

master
Garrett Mills 3 years ago
parent d99503250a
commit 28aabc0960
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246

@ -3,45 +3,45 @@ name: default
type: docker
steps:
# ============ RESTORE CACHE =============
- name: restore node_modules cache
image: appleboy/drone-sftp-cache
settings:
server:
from_secret: cache_server
port: 22
username:
from_secret: cache_server_user
key:
from_secret: cache_server_key
path: /var/cache/drone
restore: true
mount:
- node_modules
# - name: restore node_modules cache
# image: appleboy/drone-sftp-cache
# settings:
# server:
# from_secret: cache_server
# port: 22
# username:
# from_secret: cache_server_user
# key:
# from_secret: cache_server_key
# path: /var/cache/drone
# restore: true
# mount:
# - node_modules
# ============ BUILD STEPS ===============
- name: build-prod
image: node:14
image: glmdev/node-pnpm:latest
commands:
- npm i
- pnpm i
- ./node_modules/.bin/ionic build --prod
- ./node_modules/.bin/ngsw-config ./www/ ./ngsw-config.json /i
- tar czf build.tar.gz www
# =============== REBULD CACHE ==============
- name: rebuild node_modules cache
image: appleboy/drone-sftp-cache
settings:
server:
from_secret: cache_server
port: 22
username:
from_secret: cache_server_user
key:
from_secret: cache_server_key
path: /var/cache/drone
rebuild: true
mount:
- node_modules
# - name: rebuild node_modules cache
# image: appleboy/drone-sftp-cache
# settings:
# server:
# from_secret: cache_server
# port: 22
# username:
# from_secret: cache_server_user
# key:
# from_secret: cache_server_key
# path: /var/cache/drone
# rebuild: true
# mount:
# - node_modules
# =============== RELEASE ===============
- name: release

@ -0,0 +1 @@
shamefully-hoist=true

@ -0,0 +1,3 @@
FROM node:14
RUN npm install -g pnpm

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save