Skip to content

Commit

Permalink
Merge pull request #20 from deflis/fix-docs-workflow
Browse files Browse the repository at this point in the history
pnpm化でGithub Actionsでドキュメントの自動生成が動かなくなったのを修正
  • Loading branch information
deflis authored Feb 27, 2024
2 parents 787a0b3 + 6e8c4f9 commit 4735e77
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,36 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- uses: actions/setup-node@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm run docs
node-version: "20.x"
registry-url: https://registry.npmjs.org

- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Build Pages
run: pnpm run docs

- name: Setup Pages
uses: actions/configure-pages@v1
Expand Down

0 comments on commit 4735e77

Please sign in to comment.