76 lines
2.1 KiB
YAML
76 lines
2.1 KiB
YAML
name: Build Pull request
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
env:
|
|
NEXT_PUBLIC_TINA_CLIENT_ID: ${{ secrets.NEXT_PUBLIC_TINA_CLIENT_ID }}
|
|
TINA_TOKEN: ${{ secrets.TINA_TOKEN }}
|
|
NEXT_PUBLIC_TINA_BRANCH: ${{ github.head_ref }}
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Build sample
|
|
outputs:
|
|
NEXT_PUBLIC_BASE_PATH: ${{ steps.setup-base-path.outputs.NEXT_PUBLIC_BASE_PATH }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: .nvmrc
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
name: Install pnpm
|
|
id: pnpm-install
|
|
with:
|
|
version: 9.15.2
|
|
run_install: false
|
|
|
|
- name: Get pnpm store directory
|
|
id: pnpm-cache
|
|
shell: bash
|
|
run: |
|
|
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
|
|
|
|
- uses: actions/cache@v4
|
|
name: Setup pnpm cache
|
|
with:
|
|
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
|
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pnpm-store-
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Load .env file
|
|
uses: xom9ikk/dotenv@v2
|
|
with:
|
|
path: ./.github
|
|
|
|
- name: Setup Base Path
|
|
id: setup-base-path
|
|
run: |
|
|
echo "NEXT_PUBLIC_BASE_PATH=${{ env.NEXT_PUBLIC_BASE_PATH }}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Build
|
|
run: pnpm build
|
|
|
|
slugify-branch:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
slug: ${{ steps.slug.outputs.slug }}
|
|
steps:
|
|
- name: Slugify branch name
|
|
id: slug
|
|
run: |
|
|
SLUG=$(echo "${{ github.head_ref }}" | tr '/' '-' | tr -d '.' | tr '[:upper:]' '[:lower:]')
|
|
echo "slug=$SLUG" >> $GITHUB_OUTPUT
|
|
|
|
search-tests:
|
|
needs: [build, slugify-branch]
|
|
uses: ./.github/workflows/search-test.yml
|
|
with:
|
|
base_url: https://tina-docs-git-${{ needs.slugify-branch.outputs.slug }}-tinacms.vercel.app
|
|
NEXT_PUBLIC_BASE_PATH: ${{ needs.build.outputs.NEXT_PUBLIC_BASE_PATH }} |