From fd87c91ab35a990220bffc727ea8d26e5d5a1ecf Mon Sep 17 00:00:00 2001 From: kaivanwong Date: Mon, 6 May 2024 11:01:45 +0800 Subject: [PATCH] chore: update ci file --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5ace4f..99db40c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,17 +15,13 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set pnpm - uses: pnpm/action-setup@v3 - - name: Set node uses: actions/setup-node@v3 with: node-version: lts/* - cache: pnpm - name: Install dependencies - run: pnpm install + run: npm install - name: Lint - run: pnpm lint + run: npm run lint