File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed
Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 2020 with :
2121 creds : ${{ secrets.AZURE_CREDENTIALS }}
2222
23- # - uses: actions/setup-node@v1
24- # with:
25- # node-version: ${{ matrix.node-version }}
23+ - name : Use Node.js ${{ matrix.node-version }}
24+ uses : actions/setup-node@v1
25+ with :
26+ node-version : ${{ matrix.node-version }}
27+ - name : Install Serverless
28+ run : npm install
29+
2630
2731
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ help: Makefile
22 @sed -n ' s/^## //p' $<
33
44# # npm-install-functions -> Added dependencies in case that the functions need, add manually the command and Makefile
5- deploy-nodejs-functions :
6- cd nodejs-functions ; pwd ; $(MAKE ) functions-with- dependencies
5+ install-dependencies-nodejs :
6+ cd nodejs-functions ; pwd ; $(MAKE ) install- dependencies-nodejs
77
8+ deploy-nodejs :
9+ cd nodejs-functions ; pwd ; $(MAKE ) deploy
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ help: Makefile
22 @sed -n ' s/^## //p' $<
33
44# # npm-install-functions -> Added dependencies in case that the functions need, add manually the command and Makefile
5- functions-with- dependencies :
5+ install- dependencies-nodejs :
66 cd src/handlers/automatic-clock-outs ; pwd ; $(MAKE ) install
77
8+ deploy :
9+ sls deploy
You can’t perform that action at this time.
0 commit comments