We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b70963d commit f664484Copy full SHA for f664484
.github/workflows/CD.yml
@@ -24,8 +24,12 @@ jobs:
24
uses: actions/setup-node@v1
25
with:
26
node-version: ${{ matrix.node-version }}
27
+
28
- name: Install Serverless
29
run: npm install
30
31
+ - name: Install Serverless Plugins
32
+ run: make install-serverless-plugins
33
34
35
Makefile
@@ -5,5 +5,9 @@ help: Makefile
5
install-dependencies-nodejs:
6
cd nodejs-functions ; pwd ; $(MAKE) install-dependencies-nodejs
7
8
+install-serverless-plugins:
9
+ serverless plugin install --name serverless-azure-functions
10
11
deploy-nodejs:
- cd nodejs-functions ; pwd ; $(MAKE) deploy
12
+ cd nodejs-functions ; pwd ; $(MAKE) deploy
13
0 commit comments