Update check-dist.yml

This commit is contained in:
Jonas Kruckenberg 2022-05-07 12:53:00 +02:00
parent 116ed3b140
commit ee2efa7cb5
No known key found for this signature in database
GPG Key ID: 21AD3B3C266BDE3D

View File

@ -28,8 +28,28 @@ jobs:
with:
node-version: 16.x
- uses: pnpm/action-setup@v2.0.1
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: npm ci
run: pnpm install
- name: Rebuild the dist/ directory
run: |