mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
eb259a3783
## About the changes This fakes the build on docs-only PRs to be able to have a green build. Touching a doc to validate it works
35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: PR -> Build Docs
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- website/**
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build docs
|
|
env:
|
|
UNLEASH_FEEDBACK_TARGET_URL: ${{ secrets.DOCS_FEEDBACK_TARGET_URL }}
|
|
UNLEASH_PROXY_CLIENT_KEY: ${{ secrets.UNLEASH_PROXY_CLIENT_KEY_DEVELOPMENT }}
|
|
UNLEASH_PROXY_URL: ${{ secrets.UNLEASH_PROXY_URL_DEVELOPMENT }}
|
|
run: |
|
|
# Build the site
|
|
cd website && yarn
|
|
# give better error messages when the build fails (refer to website/readme.md#troubleshooting)
|
|
echo "Removing references to chalk in node_modules/@docusaurus/core/lib/client/serverEntry.js"
|
|
sed -i 's/chalk\(\w\|\.\)\+//g' node_modules/@docusaurus/core/lib/client/serverEntry.js
|
|
echo "Chalk removed"
|
|
yarn build
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: build
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
steps:
|
|
- run: echo "Fake build step for docs only PRs"
|