✅Build Status Check (main branch) #181
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ✅Build Status Check | |
run-name: ✅Build Status Check (${{ github.base_ref }} branch) | |
defaults: | |
run: | |
shell: pwsh | |
on: | |
pull_request: | |
branches: main | |
jobs: | |
build_status_check: | |
name: Build Status Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PNPM (${{ vars.PNPM_VERSION }}) | |
uses: pnpm/action-setup@v2 | |
with: | |
version: ${{ vars.PNPM_VERSION }} | |
- name: Setup Docusaurus | |
run: pnpm install | |
- name: Build | |
run: pnpm build |