diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index c050ee6..bfd9218 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -9,17 +9,19 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Set up pnpm + uses: pnpm/action-setup@v2 + with: + version: 8 + - name: Install Node.js uses: actions/setup-node@v4 with: node-version: lts/* cache: pnpm - - name: Set up pnpm - uses: pnpm/action-setup@v2 - with: - version: 8 - run_install: true + - name: Install dependencies + run: pnpm install --frozen-lockfile - name: Get/set Prettier and ESLint cache uses: actions/cache@v3