mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 17:00:27 -04:00
28ef62cf31
Vitest 4 no longer restricts test execution when a file path is passed as a positional filter, causing all docs tests to run and fail on unrelated tests. Use --dir to scope to the target directory. PR #44833 made the update which broke the behaviour.
85 lines
2.7 KiB
YAML
85 lines
2.7 KiB
YAML
name: Update JS Client Libraries Docs
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Version that was released (e.g., patch, minor, major, or v2.1.0)'
|
|
required: true
|
|
type: string
|
|
source:
|
|
description: 'Source of the documentation update'
|
|
required: false
|
|
type: string
|
|
default: 'manual'
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
contents: write
|
|
|
|
jobs:
|
|
update-docs:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
|
with:
|
|
ref: master
|
|
|
|
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
|
|
name: Install pnpm
|
|
with:
|
|
run_install: false
|
|
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
cache: 'pnpm'
|
|
|
|
- name: Install deps
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Regenerate JS client libraries tsdoc files
|
|
working-directory: apps/docs/spec
|
|
env:
|
|
SOURCE: ${{ github.event.inputs.source }}
|
|
VERSION: ${{ github.event.inputs.version }}
|
|
run: |
|
|
echo "Regenerating tsdoc files for JS client libraries..."
|
|
echo "Source: ${SOURCE}"
|
|
echo "Version: ${VERSION}"
|
|
make
|
|
|
|
- name: Generate new typespec snapshot
|
|
working-directory: apps/docs
|
|
run: |
|
|
echo "Generating new typespec snapshot for review..."
|
|
npx vitest run --update --dir features/docs
|
|
|
|
- name: Generate token
|
|
id: app-token
|
|
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf
|
|
with:
|
|
app-id: ${{ secrets.GH_AUTOFIX_APP_ID }}
|
|
private-key: ${{ secrets.GH_AUTOFIX_PRIVATE_KEY }}
|
|
|
|
- name: Create pull request
|
|
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
|
|
with:
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
commit-message: 'docs: update js sdk docs (${{ github.event.inputs.version }})'
|
|
title: 'docs: update js sdk docs (${{ github.event.inputs.version }})'
|
|
body: |
|
|
Updates JS sdk documentation following stable release.
|
|
Ran `make` in apps/docs/spec to regenerate tsdoc files.
|
|
|
|
**Details:**
|
|
- **Version:** `${{ github.event.inputs.version }}`
|
|
- **Source:** `${{ github.event.inputs.source }}`
|
|
- **Changes:** Regenerated tsdoc files from latest spec files
|
|
|
|
🤖 Auto-generated from @supabase/supabase-js stable release.
|
|
branch: 'gha/update-js-sdk-docs-${{ github.run_number }}'
|
|
base: 'master'
|