perform checkout and node dependencies in highlight job

This commit is contained in:
John Bowdre 2024-01-21 14:32:08 -06:00
parent 3f2d383ac3
commit 708210d76d

View file

@ -57,6 +57,12 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
steps: steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
- name: Download artifact - name: Download artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with: