File tree 1 file changed +13
-4
lines changed
1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -14,21 +14,30 @@ jobs:
14
14
15
15
strategy :
16
16
matrix :
17
- node-version : [18.x ]
17
+ node-version : [18.20.3 ]
18
18
19
19
steps :
20
20
- uses : actions/checkout@v3
21
- - name : Use Node.js ${{ matrix.node-version }}
21
+
22
+ - name : Set up Node.js ${{ matrix.node-version }}
22
23
uses : actions/setup-node@v3
23
24
with :
24
25
node-version : ${{ matrix.node-version }}
26
+
27
+ - name : Set up Python 3.9
28
+ uses : actions/setup-python@v4
29
+ with :
30
+ python-version : ' 3.9'
31
+
25
32
- run : npm ci
26
33
27
- # Deployment of your project
34
+ # Ensure Serverless plugin for Python requirements is installed and deploy
28
35
- name : Serverless deploy
29
36
uses : serverless/github-action@master
30
37
with :
31
- args : -c "serverless plugin install --name serverless-python-requirements && serverless deploy"
38
+ args : >
39
+ -c "serverless plugin install --name serverless-python-requirements
40
+ && serverless deploy"
32
41
entrypoint : /bin/sh
33
42
env :
34
43
# To link with your Serverless Framework account, equivalent to login
You can’t perform that action at this time.
0 commit comments