From 5a5db6931daeda7fb6278343b751db839907fb78 Mon Sep 17 00:00:00 2001 From: Victor Bo <10667379@qq.com> Date: Thu, 14 Jul 2022 10:08:16 +0800 Subject: [PATCH] chore: update github actions --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4ac7b6..5929428 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,10 +25,10 @@ jobs: cache: pnpm - name: Install - run: npm ci + run: pnpm install --frozen-lockfile - name: Lint - run: npm run lint + run: pnpm run lint # typecheck: # runs-on: ubuntu-latest @@ -45,10 +45,10 @@ jobs: # cache: pnpm # - name: Install - # run: npm ci + # run: pnpm install --frozen-lockfile # - name: Typecheck - # run: npm run typecheck + # run: pnpm run typecheck test: runs-on: ${{ matrix.os }} @@ -72,10 +72,10 @@ jobs: cache: pnpm - name: Install - run: npm ci + run: pnpm install --frozen-lockfile - name: Build - run: npn run build + run: pnpm run build - name: Test - run: npn run test + run: pnpm run test