Skip to content

Commit

Permalink
also build typescript for all commits
Browse files Browse the repository at this point in the history
  • Loading branch information
tstikvoort committed Jul 12, 2024
1 parent 106738d commit 3cec67b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-lint-tent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Build TypeScript
- name: Build typescript
run: npm run tsc

- name: Build package
run: npm run build

- name: Run ESLint
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@
"lint": "eslint ./src/** --ext=.ts,.tsx --max-warnings 0",
"prepublishOnly": "run-s build",
"watch": "pkg-utils watch --strict",
"tsc": "tsc --noEmit",
"tsc:watch": "tsc --noEmit --watch",
"prepare": "npm run build"
},
"dependencies": {
Expand Down

0 comments on commit 3cec67b

Please sign in to comment.