Skip to content

Commit

Permalink
chore: more checks in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
andreafspeziale committed Mar 9, 2025
1 parent 3bf31b9 commit 358308d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Types
run: pnpm build:check
- name: Lint
run: pnpm lint
run: pnpm lint:check
- name: Test
run: pnpm test
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
"types": "index.d.ts",
"scripts": {
"prepare": "husky",
"build:check": "tsc --noEmit",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"lib/**/*.ts\"",
"lint:check": "eslint 'lib/**/*.ts'",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "jest",
"test:watch": "jest --watch",
Expand Down

0 comments on commit 358308d

Please sign in to comment.