perform checkout and node dependencies in highlight job

This commit is contained in:
John Bowdre 2024-01-21 14:32:08 -06:00
parent 05852d3803
commit f3746e4047

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: