Skip to content

Commit

Permalink
ci(shared): add lint and typecheck to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sdorra committed Apr 19, 2024
1 parent 6343300 commit 550e5f8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,9 @@ jobs:

- name: Test
run: pnpm test

- name: TypeCheck
run: pnpm typecheck

- name: Lint
run: pnpm lint
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"scripts": {
"commitlint": "commitlint --edit",
"build": "turbo build",
"test": "turbo test"
"test": "turbo test",
"lint": "turbo lint",
"typecheck": "turbo typecheck"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
Expand Down

0 comments on commit 550e5f8

Please sign in to comment.