Skip to content

Commit f664484

Browse files
committed
config: Install Serverless PLugins
1 parent b70963d commit f664484

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/CD.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,12 @@ jobs:
2424
uses: actions/setup-node@v1
2525
with:
2626
node-version: ${{ matrix.node-version }}
27+
2728
- name: Install Serverless
2829
run: npm install
2930

31+
- name: Install Serverless Plugins
32+
run: make install-serverless-plugins
33+
3034

3135

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,9 @@ help: Makefile
55
install-dependencies-nodejs:
66
cd nodejs-functions ; pwd ; $(MAKE) install-dependencies-nodejs
77

8+
install-serverless-plugins:
9+
serverless plugin install --name serverless-azure-functions
10+
811
deploy-nodejs:
9-
cd nodejs-functions ; pwd ; $(MAKE) deploy
12+
cd nodejs-functions ; pwd ; $(MAKE) deploy
13+

0 commit comments

Comments
 (0)