Skip to content

Commit 8e5a02f

Browse files
authored
Remove deprecated action/npm and replace with npm install run command (#10)
As per the [docs](https://github.com/actions/npm). The `actions/npm` action is deprecated in favor of using the run script step.
1 parent 31a8f9a commit 8e5a02f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@master
2828
- name: npm install
29-
uses: actions/npm@master
30-
with:
31-
args: install
29+
run: npm install
3230
- name: serverless deploy
3331
uses: serverless/github-action@master
3432
with:

0 commit comments

Comments
 (0)