mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
74a90c566c
Co-authored-by: Pooya Parsa <pooya@pi0.io>
34 lines
1003 B
YAML
34 lines
1003 B
YAML
name: docs-e2e
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
url:
|
|
required: false
|
|
description: The URL to run the test suite against.
|
|
type: string
|
|
deployment_status:
|
|
|
|
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:
|
|
- uses: actions/checkout@v3
|
|
- run: corepack enable
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
cache: "pnpm"
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- run: node ./scripts/crawl.mjs
|
|
env:
|
|
BASE_URL: ${{ github.event.inputs.url || github.event.deployment.payload.web_url || github.event.deployment_status.target_url }}
|