Skip to content

Commit 0b5d76a

Browse files
committed
workflow: Run npm install in workflow
Try and ensure that npm install has been run, so that the required dependencies are installed Signed-off-by: stevenhorsman <[email protected]>
1 parent ff3df53 commit 0b5d76a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/fetch-ci-nightly-data.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
21+
- name: npm install
22+
shell: bash
23+
run: |
24+
npm install
2125
- name: Update dashboard data
2226
env:
2327
TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)