chore(deps): update dependency oxlint to v1.79.0 #728
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: Developer Docs | |
| on: | |
| pull_request: | |
| branches: [next] | |
| jobs: | |
| ci: | |
| name: Build/Test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [24] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: pnpm/action-setup@v2 | |
| name: Install pnpm | |
| id: pnpm-install | |
| with: | |
| version: 10 | |
| run_install: false | |
| - name: Get pnpm store directory | |
| id: pnpm-cache | |
| shell: bash | |
| run: | | |
| echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
| - uses: actions/cache@v5 | |
| name: Setup pnpm cache | |
| with: | |
| path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - name: Install dependencies... | |
| run: pnpm install | |
| - name: Lint... | |
| run: pnpm lint | |
| - name: Format check... | |
| run: pnpm fmt:check | |
| - name: Type check... | |
| run: pnpm typecheck | |
| - name: Build Docs... | |
| run: pnpm docs:build | |
| env: | |
| VITE_MEILISEARCH_HOST: ${{ secrets.MEILISEARCH_HOST || 'http://localhost:7700' }} | |
| VITE_MEILISEARCH_SEARCH_KEY: ${{ secrets.MEILISEARCH_SEARCH_KEY || 'placeholder' }} |