Skip to content

Test build

Test build #22

Workflow file for this run

name: Test build
on:
workflow_run:
workflows: ['Test']
types: [completed]
jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install
run: pnpm i
- name: Test build
run: pnpm build
- name: Test build docs
run: pnpm build:docs