Skip to content

Commit

Permalink
fix(ci): change all package manager environment to yarn as universa…
Browse files Browse the repository at this point in the history
…l node manager
  • Loading branch information
andatoshiki committed Mar 16, 2024
1 parent 95c03cc commit b4fa41b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm # or pnpm / yarn
cache: yarn # or pnpm / yarn
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: pnpm i # or pnpm install / yarn install / bun install
run: yarn i # or pnpm install / yarn install / bun install
- name: Build with VitePress
run: pnpm build # or pnpm docs:build / yarn docs:build / bun run docs:build
run: yarn build # or pnpm docs:build / yarn docs:build / bun run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit b4fa41b

Please sign in to comment.