From 7ef79111c79e5abaf66afcc2a945f954bfbc5ff0 Mon Sep 17 00:00:00 2001 From: Gavin Birkhoff Date: Sun, 18 Jun 2023 17:04:58 +0800 Subject: [PATCH] Update actions of test --- .github/workflows/test.yml | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) 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: