ci: setup pnpm
This commit is contained in:
parent
7b796c4147
commit
5dd83c81ea
1 changed files with 11 additions and 16 deletions
23
.github/workflows/depoly.yml
vendored
23
.github/workflows/depoly.yml
vendored
|
@ -12,22 +12,17 @@ jobs:
|
|||
with:
|
||||
submodules: true # Checkout private submodules(themes or something else).
|
||||
|
||||
# Caching dependencies to speed up workflows. (GitHub will remove any cache entries that have not been accessed in over 7 days.)
|
||||
- name: Cache node modules
|
||||
uses: actions/cache@v2
|
||||
id: cache
|
||||
- uses: pnpm/action-setup@v2
|
||||
name: Setup Pnpm
|
||||
with:
|
||||
path: node_modules
|
||||
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-node-
|
||||
- run: 'curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -'
|
||||
- run: 'echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list'
|
||||
- run: "sudo apt update && sudo apt install yarn"
|
||||
version: 8
|
||||
|
||||
- name: Install Dependencies
|
||||
if: steps.cache.outputs.cache-hit != 'true'
|
||||
run: pnpm install
|
||||
- name: Setup Node
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "18"
|
||||
cache: pnpm
|
||||
cache-dependency-path: '**/pnpm-lock.yaml'
|
||||
|
||||
# Deploy hexo blog website.
|
||||
- name: Deploy
|
||||
|
|
Loading…
Reference in a new issue