Skip to content

Commit

Permalink
fix: install required package
Browse files Browse the repository at this point in the history
  • Loading branch information
777abhi committed May 31, 2023
1 parent 46f0d75 commit 00cda79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:

- name: Run JavaScript File and Set Output
id: random_word
run: node random-word.js
run: |
npm install
node random-word.js
- name: Display RANDOM_WORD
run: |
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"license": "ISC",
"devDependencies": {
"@playwright/test": "1.34.3",
"dd-trace": "^3.14.1"
"dd-trace": "^3.14.1",
"@actions/core":"1.10.0"
}
}

0 comments on commit 00cda79

Please sign in to comment.