Skip to content

Commit

Permalink
feat: use npm
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Mar 22, 2024
1 parent 07c8d76 commit 076d9b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion scripts/check_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 076d9b0

Please sign in to comment.