remove links to images that are borked in classic, #29
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 | |
| - name: Set up Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| cache: true | |
| - run: deno fmt --check | |
| - run: deno task test | |
| - name: "Reference: install" | |
| working-directory: "reference_gen" | |
| run: deno install | |
| - name: "Reference: generate types" | |
| working-directory: "reference_gen" | |
| run: deno task types | |
| - name: "Reference: generate docs" | |
| working-directory: "reference_gen" | |
| run: deno task doc | |
| - name: Build | |
| env: | |
| ORAMA_PROJECT_ID: ${{ vars.ORAMA_PROJECT_ID }} | |
| ORAMA_DATASOURCE_ID: ${{ vars.ORAMA_DATASOURCE_ID }} | |
| ORAMA_PRIVATE_API_KEY: ${{ secrets.ORAMA_PRIVATE_API_KEY }} | |
| run: deno task build | |
| - 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 |