Skip to content

Commit

Permalink
feat: type check on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Jan 15, 2024
1 parent c805d6e commit 7ecf406
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/conventional-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Conventional Commits
on:
pull_request:
push:
branches:
- main
- development

jobs:
conventional-commits:
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Typecheck

on:
pull_request:
push:
branches:
- main
- development

jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Run typecheck
run: yarn tsc --noEmit
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# @ubiquity/ubiquibot-kernel

The bot kernel is designed to:

- Interface with plugins (GitHub Actions) for longer running processes.
- Run on Cloudflare Workers
- Run on Cloudflare Workers.

### Quick Start

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"node": ">=20.10.0"
},
"scripts": {
"dev": "run-p worker proxy",
"dev": "run-p worker proxy",
"format": "run-s format:prettier format:lint",
"format:lint": "eslint --fix .",
"format:prettier": "prettier --write .",
Expand Down

0 comments on commit 7ecf406

Please sign in to comment.