Skip to content

Commit

Permalink
fix: testing github action 02
Browse files Browse the repository at this point in the history
  • Loading branch information
DanyalAslam committed Oct 15, 2024
1 parent 06636ef commit a69a980
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0 # will fetch all history
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: true
- name: Cache pnpm modules
uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: ${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ matrix.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-
- name: Install pnpm modules
run: pnpm install
- name: Run build
Expand Down

0 comments on commit a69a980

Please sign in to comment.