Add artifact repository docs for pnpm and yarn #275
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a workflow for ensuring tests pass with the configured git submodules. | |
# It does not attempt to update the repos/branches specified in any submodules. | |
--- | |
name: Test | |
on: | |
# Allow running this workflow manually from the Actions tab | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
doc-checks: | |
name: Test documentation website | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
submodules: true | |
- name: Install local website package | |
working-directory: ./site | |
run: npm ci | |
- name: Ensure website builds | |
working-directory: ./site | |
run: npm run build |