2022-09-13 16:06:15 +00:00
|
|
|
name: docs-e2e
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
url:
|
|
|
|
required: false
|
|
|
|
description: The URL to run the test suite against.
|
|
|
|
type: string
|
|
|
|
deployment_status:
|
|
|
|
|
2023-06-02 17:14:21 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-09-13 16:06:15 +00:00
|
|
|
jobs:
|
|
|
|
crawl-docs:
|
|
|
|
environment:
|
|
|
|
name: ${{ github.event.deployment.environment || 'Production' }}
|
|
|
|
url: ${{ github.event.inputs.url || github.event.deployment.payload.web_url || github.event.deployment_status.target_url }}
|
|
|
|
if: github.event.deployment_status.state == 'success' || github.event_name == 'workflow_dispatch'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-06-09 16:01:23 +00:00
|
|
|
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-10-17 10:10:05 +00:00
|
|
|
- run: corepack enable
|
2023-07-05 16:31:22 +00:00
|
|
|
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
|
2022-09-13 16:06:15 +00:00
|
|
|
with:
|
2022-10-17 10:10:05 +00:00
|
|
|
cache: "pnpm"
|
2022-09-13 16:06:15 +00:00
|
|
|
|
|
|
|
- name: Install dependencies
|
2022-10-17 10:10:05 +00:00
|
|
|
run: pnpm install
|
2022-09-13 16:06:15 +00:00
|
|
|
|
|
|
|
- run: node ./scripts/crawl.mjs
|
|
|
|
env:
|
|
|
|
BASE_URL: ${{ github.event.inputs.url || github.event.deployment.payload.web_url || github.event.deployment_status.target_url }}
|