Skip to content

Commit

Permalink
fix: ci syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Naturalclar committed Jun 25, 2023
1 parent a934454 commit a7d0592
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ jobs:
uses: NuGet/setup-nuget@v1.0.5

- uses: pnpm/action-setup@v2
with:
version: 6.0.2
with:
version: 6.0.2
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "::set-output name=dir::$(pnpm store path)"
id: pnpm-cache
shell: bash
run: |
echo "::set-output name=dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
if: steps.pnpm-cache.outputs.cache-hit != 'true'
run: pnpm install --pure-lockfile
Expand Down

0 comments on commit a7d0592

Please sign in to comment.