update anatomy auction snippets+ fix auction commands #3964
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
name: Link Checker | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: | |
- master | |
jobs: | |
check_links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "18" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
${{ github.workspace }}/**/.cache | |
key: | | |
${{ runner.os }}-docusaurus-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-docusaurus-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
run: cd ./website && yarn | |
- name: Run test | |
run: cd ./website && yarn full-test |