diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 78e8bb6..1de17e1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,18 +9,37 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Install pnpm - uses: pnpm/install-action@v2.2.4 - with: - version: 7 + - name: Setup Node.js "16.x" uses: actions/setup-node@v3 with: node-version: '16.x' + - uses: pnpm/action-setup@v2 + name: Install pnpm + id: pnpm-install + with: + version: 7 + run_install: false + + - name: Get pnpm store directory + id: pnpm-cache + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT + + - uses: actions/cache@v3 + name: Setup pnpm cache + with: + path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + - name: Install dependencies run: pnpm install - name: Run Tests run: pnpm test + - name: Uploading reports uses: codecov/codecov-action@v3 with: