Merge remote-tracking branch 'origin/main' #8
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: Docusarus Test Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Deploy Test Pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Base Repo | |
uses: actions/checkout@v3 | |
- name: PNPM Initialization | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Setup Node Environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Test Build Website | |
run: pnpm build |