docs: add HTML parsing guide for DOMParser #1748
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: Lint | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: main | |
| jobs: | |
| lint: | |
| name: lint and link check | |
| runs-on: ubuntu-22.04-xl | |
| permissions: | |
| id-token: write # Needed for auth with Deno Deploy | |
| contents: read # Needed to clone the repository | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| cache: true | |
| deno-version: canary | |
| - run: deno fmt --check | |
| - run: deno task test | |
| # The types come from `deno types`, so they depend on the Deno binary, | |
| # not on any repo file. Regenerate them every run (types: 86s) and cache | |
| # only the doc generation (docs: 162s), keyed on the generated types' | |
| # content. A repo-only cache key kept serving reference docs generated | |
| # with an older Deno, missing newly added APIs (#3389). | |
| - name: "Reference: install" | |
| working-directory: "reference_gen" | |
| run: deno install | |
| - name: "Reference: generate types" | |
| working-directory: "reference_gen" | |
| run: deno task types | |
| - name: Restore reference docs cache | |
| uses: actions/cache@v4 | |
| id: ref-cache | |
| with: | |
| path: reference_gen/gen | |
| key: reference-${{ hashFiles('reference_gen/types/**', 'reference_gen/*.ts', 'reference_gen/*.json', 'reference_gen/*.jsonc', 'reference_gen/deno.lock', 'reference_gen/node_descriptions/**') }} | |
| - name: "Reference: generate docs" | |
| if: steps.ref-cache.outputs.cache-hit != 'true' | |
| working-directory: "reference_gen" | |
| run: deno task doc | |
| # Cache std-docs to avoid 43+ network requests to JSR API on every build | |
| - name: Restore std-docs cache | |
| uses: actions/cache@v4 | |
| id: std-cache | |
| with: | |
| path: runtime/reference/std | |
| key: std-docs-${{ hashFiles('scripts/generate_std_docs.ts') }} | |
| restore-keys: std-docs- | |
| - name: Generate std-docs | |
| if: steps.std-cache.outputs.cache-hit != 'true' | |
| run: deno task generate:std-docs | |
| - name: Restore OG image cache | |
| uses: actions/cache@v4 | |
| id: og-cache | |
| with: | |
| path: .og-cache | |
| key: og-images-${{ hashFiles('open_graph/**') }} | |
| restore-keys: og-images- | |
| # Build reference pages first with a minimal Lume config (JSX only, | |
| # no markdown/esbuild/tailwind/sitemap), then build the main site | |
| # skipping reference pages. Outputs merge since both use emptyDest:false. | |
| - name: "Build: reference pages" | |
| run: deno task lume:reference | |
| - name: "Build: main site" | |
| env: | |
| ORAMA_PROJECT_ID: ${{ vars.ORAMA_PROJECT_ID }} | |
| ORAMA_DATASOURCE_ID: ${{ vars.ORAMA_DATASOURCE_ID }} | |
| ORAMA_PRIVATE_API_KEY: ${{ secrets.ORAMA_PRIVATE_API_KEY }} | |
| SKIP_OG: ${{ steps.og-cache.outputs.cache-hit == 'true' && '1' || '' }} | |
| SKIP_REFERENCE: "1" | |
| BUILD_TYPE: FULL | |
| run: deno task lume | |
| - name: Restore cached OG images | |
| if: steps.og-cache.outputs.cache-hit == 'true' | |
| run: cp -r .og-cache/_site/* _site/ 2>/dev/null || true | |
| - name: Save OG images to cache | |
| if: steps.og-cache.outputs.cache-hit != 'true' | |
| run: | | |
| mkdir -p .og-cache/_site | |
| cd _site && find . -name "index.png" -exec cp --parents {} ../.og-cache/_site/ \; | |
| - name: Run server | |
| run: deno run --allow-read=. --allow-net --allow-env --lock=deno.lock server.ts & | |
| - name: Link checker | |
| env: | |
| DOCS_ROOT: "http://localhost:8000" | |
| run: deno run --no-lock --allow-net --allow-env .github/workflows/better_link_checker.ts |