Skip to content

Commit

Permalink
chore: update GH-Action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dalisoft committed Jul 7, 2024
1 parent 98c158d commit 019bfe8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/lint_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8
version: 9
run_install: false

- name: Get pnpm store directory
Expand Down Expand Up @@ -74,6 +74,22 @@ jobs:
version: 9
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Cache
uses: actions/cache@v4
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: Release
env:
GIT_USERNAME: ${{ vars.GIT_USERNAME }}
Expand Down
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

0 comments on commit 019bfe8

Please sign in to comment.