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 20
20
with :
21
21
creds : ${{ secrets.AZURE_CREDENTIALS }}
22
22
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
+
26
30
27
31
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ help: Makefile
2
2
@sed -n ' s/^## //p' $<
3
3
4
4
# # 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
7
7
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
2
2
@sed -n ' s/^## //p' $<
3
3
4
4
# # 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 :
6
6
cd src/handlers/automatic-clock-outs ; pwd ; $(MAKE ) install
7
7
8
+ deploy :
9
+ sls deploy
You can’t perform that action at this time.
0 commit comments