Dragging a node stacked on top of the current selection silently does nothing #1021
Workflow file for this run
This file contains hidden or 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
| --- | |
| name: docs-npm-PR-verify | |
| concurrency: | |
| group: docs-PR-verify-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| - ".github/workflows/docs*" | |
| jobs: | |
| unit-tests: | |
| name: Docs / Verify | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-24.04 | |
| env: | |
| ASDF_BRANCH_VERSION: 0.18.0 | |
| steps: | |
| - name: Checkout / Branch Head | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: NPM / Setup Dependencies Cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('docs/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - name: asdf / Setup Dependencies Cache | |
| uses: actions/cache@v4 | |
| id: asdf-cache | |
| with: | |
| path: ~/.asdf | |
| key: ${{ runner.os }}-asdf-${{ env.ASDF_BRANCH_VERSION }}-${{ hashFiles('docs/.tool-versions') }} | |
| - name: Save tool-versions content | |
| run: | | |
| { | |
| echo "TOOL_VERSIONS<<EOF" | |
| cat docs/.tool-versions | |
| echo "EOF" | |
| } >> "$GITHUB_ENV" | |
| - name: NPM / Setup asdf environment | |
| uses: asdf-vm/actions/install@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0 | |
| # https://github.com/asdf-vm/actions/issues/356 | |
| if: steps.asdf-cache.outputs.cache-hit != 'true' | |
| with: | |
| tool_versions: ${{ env.TOOL_VERSIONS }} | |
| asdf_version: ${{ env.ASDF_BRANCH_VERSION }} | |
| - name: NPM / Create Cache Folders | |
| run: | | |
| mkdir -p "$HOME"/.npm | |
| - name: NPM / Verify | |
| env: | |
| GIT_CREDENTIALS: https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com | |
| working-directory: docs | |
| run: | | |
| npm run verify |