use tarball
Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
This commit is contained in:
parent
59df4a7af8
commit
ee549cc694
|
|
@ -31,7 +31,8 @@ jobs:
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: node-modules
|
name: node-modules
|
||||||
path: node_modules/
|
#path: node_modules/
|
||||||
|
path: node_modules.tar.gz
|
||||||
|
|
||||||
csi-sanity-synology:
|
csi-sanity-synology:
|
||||||
needs:
|
needs:
|
||||||
|
|
|
||||||
|
|
@ -6,4 +6,6 @@ set -x
|
||||||
export PATH="/usr/local/lib/nodejs/bin:${PATH}"
|
export PATH="/usr/local/lib/nodejs/bin:${PATH}"
|
||||||
# install deps
|
# install deps
|
||||||
npm i
|
npm i
|
||||||
|
|
||||||
|
# tar node_modules to keep the number of files low to upload
|
||||||
tar -zcvf node_modules.tar.gz node_modules
|
tar -zcvf node_modules.tar.gz node_modules
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue