mirror of
https://github.com/Snailclimb/JavaGuide.git
synced 2026-03-28 01:51:12 +00:00
Automated security fixes applied by Runner Guard (https://github.com/Vigilant-LLC/runner-guard). Changes: .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
31 lines
606 B
YAML
31 lines
606 B
YAML
name: Docs Test
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
test-docs:
|
|
name: Test docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 22
|
|
cache: pnpm
|
|
|
|
- name: Install deps
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build test
|
|
env:
|
|
NODE_OPTIONS: --max_old_space_size=4096
|
|
run: pnpm docs:build
|