File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change 25
25
repository : nasa/cumulus
26
26
ref : v18.5.1
27
27
28
- # Step 2: Install NVM (Node Version Manager)
29
- - name : Install NVM
30
- run : |
31
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
32
- export NVM_DIR="$HOME/.nvm"
33
- [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
34
- echo "NVM installed"
35
-
36
28
# Step 3: Install and use Node.js
37
29
- name : Install Node.js
38
30
run : |
39
- export NVM_DIR="$HOME/.nvm"
40
- [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
41
31
nvm install
42
32
nvm use
43
33
echo "Node.js version: $(node -v)"
47
37
run : |
48
38
export NVM_DIR="$HOME/.nvm"
49
39
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
50
- npm install -g lerna
40
+ npm install -g typescript lerna
51
41
52
42
# Step 5: Install NPM dependencies
53
43
- name : Install NPM dependencies
61
51
run : |
62
52
export NVM_DIR="$HOME/.nvm"
63
53
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
64
- npm run bootstrap -- --loglevel verbose
54
+ npm run bootstrap
65
55
66
56
# Step 7: Upload the lambda.zip from post-to-cmr
67
57
- name : Upload Post-to-CMR Lambda Artifact
80
70
81
71
# First job in the workflow installs and verifies the software
82
72
build :
73
+ if : false
83
74
name : Build, Test, Verify, Publish
84
75
# The type of runner that the job will run on
85
76
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments