From 076d9b047f3ff08a401761cbc4c41e6eaf9df70f Mon Sep 17 00:00:00 2001 From: Ignacio Date: Fri, 22 Mar 2024 10:26:02 +0800 Subject: [PATCH] feat: use npm --- .github/workflows/check.yml | 10 +++++----- scripts/check_ci.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 103d519..ff00614 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -13,9 +13,9 @@ jobs: with: node-version: 20 - - run: yarn --immutable + - run: npm ci - - run: yarn lint - - run: yarn test - - run: yarn type-check - - run: yarn build + - run: npm run lint + - run: npm run test + - run: npm run type-check + - run: npm run build diff --git a/scripts/check_ci.sh b/scripts/check_ci.sh index 51d98e8..6e6e031 100755 --- a/scripts/check_ci.sh +++ b/scripts/check_ci.sh @@ -6,4 +6,4 @@ npm run lint npm run type-check npm run test -QUICK_BUILD=true yarn build +QUICK_BUILD=true npm run build