Bump axios from 1.9.0 to 1.13.5 #15
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: Run Docs Tests | |
| on: | |
| pull_request: | |
| jobs: | |
| docs-tests: | |
| runs-on: ${{ matrix.os }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Cache version builds | |
| uses: actions/cache@v4 | |
| with: | |
| key: devtool-mvb-docs | |
| path: docs/.vitepress/cache/@devtool/mvb | |
| - name: Install Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version-file: .bun-version | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Run linter | |
| run: bun run lint | |
| - name: Test mvb | |
| run: bun run docs:mvb | |
| - name: Test build | |
| run: bun run docs:build |